diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 1c68c9f34..2580c841c 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,20 @@ Changelog for python-chess ========================== +New in v1.9.4 (22nd Dec 2022) +----------------------------- + +Bugfixes: + +* Fix ``PovScore.wdl()`` ignored ``model`` and ``ply`` parameters. +* ``chess.syzygy``: Check that board matches tablebase variant. + +New features: + +* Add model ``sf15.1`` for ``chess.engine.Score.wdl()``. +* Raise more specific exceptions: ``chess.IllegalMoveError``, + ``chess.AmbiguousMoveError``, and ``chess.InvalidMoveError``. + New in v1.9.3 (16th Sep 2022) ----------------------------- diff --git a/chess/__init__.py b/chess/__init__.py index c1a2978a9..883d5fbda 100644 --- a/chess/__init__.py +++ b/chess/__init__.py @@ -27,7 +27,7 @@ __email__ = "niklas.fiekas@backscattering.de" -__version__ = "1.9.3" +__version__ = "1.9.4" import collections import copy