diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 1575e713b..f9910db9c 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,26 @@ Changelog for python-chess ========================== +New in v1.9.1 +------------- + +Bugfixes: + +* Reject pawn capture SAN if the original file is not specified, e.g., + ``d5`` will no longer match ``cxd5``. + +Changes: + +* Tweak handling of whitespace in PGN comments: When parsing, any leading + and trailing whitespace (beyond one space) is preserved. When joining + multiple PGN comments, they are now separated with a space instead of a + newline character. When removing annotations from comments, leftover + whitespace is avoided. + +New features: + +* Add model ``sf15`` for ``chess.engine.Score.wdl()``. + New in v1.9.0 ------------- diff --git a/chess/__init__.py b/chess/__init__.py index 9f3d77724..7799bfe59 100644 --- a/chess/__init__.py +++ b/chess/__init__.py @@ -27,7 +27,7 @@ __email__ = "niklas.fiekas@backscattering.de" -__version__ = "1.9.0" +__version__ = "1.9.1" import collections import copy