Skip to content

Commit 8cf4f97

Browse files
committed
Prepare release of 0.6.0
1 parent 9c8d28a commit 8cf4f97

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

CHANGELOG.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ is more important to get things right, than to be consistent with previous
66
versions. Use this changelog to see what changed in a new release, because this
77
might include API breaking changes.
88

9-
Up for the next release
10-
-----------------------
9+
New in v0.6.0
10+
-------------
1111

1212
* If there are comments in a game before the first move, these are now assigned
1313
to `Game.comment` instead of `Game.starting_comment`. `Game.starting_comment`

chess/__init__.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
__email__ = "niklas.fiekas@tu-clausthal.de"
2222

23-
__version__ = "0.5.0"
23+
__version__ = "0.6.0"
2424

2525
import collections
2626
import re
@@ -419,6 +419,7 @@ def l45(b):
419419
[ BB_PAWN_ATTACKS[1][i] | BB_PAWN_F1[1][i] | BB_PAWN_F2[1][i] for i in SQUARES ]
420420
]
421421

422+
422423
try:
423424
from gmpy2 import popcount as pop_count
424425
from gmpy2 import bit_scan1 as bit_scan
@@ -439,6 +440,7 @@ def bit_scan(b, n=0):
439440
else:
440441
return l - r - 1
441442

443+
442444
POLYGLOT_RANDOM_ARRAY = [
443445
0x9D39247E33776D41, 0x2AF7398005AAA5C7, 0x44DB015024623547, 0x9C15F73E62A76AE2,
444446
0x75834465489C0C89, 0x3290AC3A203001BF, 0x0FBBAD1F61042279, 0xE83A908FF2FB60CA,

0 commit comments

Comments
 (0)