Skip to content

Commit b37120f

Browse files
committed
Prepare release of v0.14.1
1 parent 2fbb4d0 commit b37120f

File tree

2 files changed

+26
-1
lines changed

2 files changed

+26
-1
lines changed

CHANGELOG.rst

+25
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,31 @@ is more important to get things right, than to be consistent with previous
66
versions. Use this changelog to see what changed in a new release, because this
77
might include API breaking changes.
88

9+
New in v0.14.1
10+
--------------
11+
12+
Bugfixes:
13+
14+
* Backport Bugfix for Syzygy DTZ related to en-passant.
15+
See official-stockfish/Stockfish@6e2ca97d93812b2.
16+
17+
Changes:
18+
19+
* Added optional argument *max_fds=128* to `chess.syzygy.open_tablebases()`.
20+
An LRU cache is used to keep at most *max_fds* files open. This allows using
21+
many tables without running out of file descriptors.
22+
Previously all tables were opened at once.
23+
24+
* Syzygy and Gaviota now store absolute tablebase paths, in case you change
25+
the working directory of the process.
26+
27+
* The default implementation of `chess.uci.InfoHandler.score()` will no longer
28+
store score bounds in `info["score"]`, only real scores.
29+
30+
* Added `Board.set_chess960_pos()`.
31+
32+
* Documentation improvements.
33+
934
New in v0.14.0
1035
--------------
1136

chess/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626

2727
__email__ = "[email protected]"
2828

29-
__version__ = "0.14.0"
29+
__version__ = "0.14.1"
3030

3131
import copy
3232
import re

0 commit comments

Comments
 (0)