From 56b2410513ff6e64305ef5caed7eda68826145ed Mon Sep 17 00:00:00 2001 From: Niklas Fiekas Date: Sat, 21 May 2022 11:54:48 +0200 Subject: [PATCH] Prepare 1.9.1 --- CHANGELOG.rst | 20 ++++++++++++++++++++ chess/__init__.py | 2 +- 2 files changed, 21 insertions(+), 1 deletion(-) 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