Skip to content

Commit b48152c

Browse files
committed
Prepare 0.31.1
1 parent d23a147 commit b48152c

File tree

2 files changed

+24
-1
lines changed

2 files changed

+24
-1
lines changed

CHANGELOG.rst

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,29 @@
11
Changelog for python-chess
22
==========================
33

4+
New in v0.31.1
5+
--------------
6+
7+
Bugfixes:
8+
9+
* `RacingKingsBoard.is_variant_win()` no longer incorrectly returns `True`
10+
for drawn positions.
11+
* Multiple moves for EPD opcodes *am* and *bm* are now sorted as required by
12+
the specification.
13+
* Coordinates of SVG boards are now properly aligned, even when rendered as
14+
SVG Tiny.
15+
16+
Changes:
17+
18+
* SVG boards now have a background color for the coordinate margin, making
19+
coordinates readable on dark backgrounds.
20+
* Added *[Variant "Illegal"]* as an alias for standard chess
21+
(used by Chessbase).
22+
23+
Features:
24+
25+
* Added `Board.find_move()`, useful for finding moves that match human input.
26+
427
New in v0.31.0
528
--------------
629

chess/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424

2525
__email__ = "[email protected]"
2626

27-
__version__ = "0.31.0"
27+
__version__ = "0.31.1"
2828

2929
import collections
3030
import copy

0 commit comments

Comments
 (0)