Skip to content

Commit 03509ec

Browse files
committed
Prepare 1.9.0
1 parent 197534f commit 03509ec

File tree

2 files changed

+17
-3
lines changed

2 files changed

+17
-3
lines changed

CHANGELOG.rst

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

4+
New in v1.9.0
5+
-------------
6+
7+
Bugfixes:
8+
9+
* Expand position validation to detect check conflicting with en passant
10+
square.
11+
12+
New features:
13+
14+
* Add ``chess.svg.board(..., fill=...)``.
15+
* Let ``chess.svg.board()`` add ASCII board as description of SVG.
16+
* Add hint when engine process dies due to illegal instruction.
17+
418
New in v1.8.0
519
-------------
620

@@ -18,9 +32,9 @@ New in v1.7.0
1832

1933
New features:
2034

21-
* Added new models for ``chess.engine.Score.wdl()``: ``sf`` (the new default)
35+
* Add new models for ``chess.engine.Score.wdl()``: ``sf`` (the new default)
2236
and ``sf14``.
23-
* Added ``chess.Board.piece_map()``.
37+
* Add ``chess.Board.piece_map()``.
2438

2539
Bugfixes:
2640

chess/__init__.py

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

2828
__email__ = "niklas.fiekas@backscattering.de"
2929

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

3232
import collections
3333
import copy

0 commit comments

Comments
 (0)