Skip to content

Commit

Permalink
Prepare 1.9.1
Browse files Browse the repository at this point in the history
  • Loading branch information
niklasf committed May 21, 2022
1 parent 3663272 commit 56b2410
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 1 deletion.
20 changes: 20 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -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
-------------

Expand Down
2 changes: 1 addition & 1 deletion chess/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@

__email__ = "niklas.fiekas@backscattering.de"

__version__ = "1.9.0"
__version__ = "1.9.1"

import collections
import copy
Expand Down

0 comments on commit 56b2410

Please sign in to comment.