diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 5635a47ab..c41ea694b 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,21 @@ Changelog for python-chess ========================== +New in v0.31.2 +-------------- + +Bugfixes: + +* Fix rejected/accepted in `chess.engine.XBoardProtocol`. +* Misc typing fixes. + +Changes: + +* Deprecated `chess.syzygy.is_table_name()`. Replaced with + `chess.syzygy.is_tablename()` which has additional parameters and defaults to + `one_king`. +* Take advantage of `int.bit_count()` coming in Python 3.10. + New in v0.31.1 -------------- diff --git a/chess/__init__.py b/chess/__init__.py index 97e3717c8..3d275d2ec 100644 --- a/chess/__init__.py +++ b/chess/__init__.py @@ -24,7 +24,7 @@ __email__ = "niklas.fiekas@backscattering.de" -__version__ = "0.31.1" +__version__ = "0.31.2" import collections import copy