File tree 2 files changed +21
-1
lines changed
2 files changed +21
-1
lines changed Original file line number Diff line number Diff line change 1
1
Changelog for python-chess
2
2
==========================
3
3
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
+
4
24
New in v1.9.0
5
25
-------------
6
26
Original file line number Diff line number Diff line change 27
27
28
28
__email__ = "niklas.fiekas@backscattering.de"
29
29
30
- __version__ = "1.9.0 "
30
+ __version__ = "1.9.1 "
31
31
32
32
import collections
33
33
import copy
You can’t perform that action at this time.
0 commit comments