Skip to content

Commit 56b2410

Browse files
committed
Prepare 1.9.1
1 parent 3663272 commit 56b2410

File tree

2 files changed

+21
-1
lines changed

2 files changed

+21
-1
lines changed

CHANGELOG.rst

+20
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,26 @@
11
Changelog for python-chess
22
==========================
33

4+
New in v1.9.1
5+
-------------
6+
7+
Bugfixes:
8+
9+
* Reject pawn capture SAN if the original file is not specified, e.g.,
10+
``d5`` will no longer match ``cxd5``.
11+
12+
Changes:
13+
14+
* Tweak handling of whitespace in PGN comments: When parsing, any leading
15+
and trailing whitespace (beyond one space) is preserved. When joining
16+
multiple PGN comments, they are now separated with a space instead of a
17+
newline character. When removing annotations from comments, leftover
18+
whitespace is avoided.
19+
20+
New features:
21+
22+
* Add model ``sf15`` for ``chess.engine.Score.wdl()``.
23+
424
New in v1.9.0
525
-------------
626

chess/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727

2828
__email__ = "[email protected]"
2929

30-
__version__ = "1.9.0"
30+
__version__ = "1.9.1"
3131

3232
import collections
3333
import copy

0 commit comments

Comments
 (0)