We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 92ef80c commit 21f258dCopy full SHA for 21f258d
CHANGELOG.rst
@@ -1,6 +1,21 @@
1
Changelog for python-chess
2
==========================
3
4
+New in v0.31.2
5
+--------------
6
+
7
+Bugfixes:
8
9
+* Fix rejected/accepted in `chess.engine.XBoardProtocol`.
10
+* Misc typing fixes.
11
12
+Changes:
13
14
+* Deprecated `chess.syzygy.is_table_name()`. Replaced with
15
+ `chess.syzygy.is_tablename()` which has additional parameters and defaults to
16
+ `one_king`.
17
+* Take advantage of `int.bit_count()` coming in Python 3.10.
18
19
New in v0.31.1
20
--------------
21
chess/__init__.py
@@ -24,7 +24,7 @@
24
25
__email__ = "[email protected]"
26
27
-__version__ = "0.31.1"
+__version__ = "0.31.2"
28
29
import collections
30
import copy
0 commit comments