File tree Expand file tree Collapse file tree 3 files changed +25
-1
lines changed
Expand file tree Collapse file tree 3 files changed +25
-1
lines changed Original file line number Diff line number Diff line change 11Changelog for python-chess
22==========================
33
4+ New in v1.6.0
5+ -------------
6+
7+ New features:
8+
9+ * Allow offering a draw to XBoard engines using
10+ ``chess.engine.Protocol.play(..., draw_offered=True) ``.
11+ * Now detects insufficient material in Horde. Thanks @stevepapazis!
12+
13+ Changes:
14+
15+ * ``chess.engine.popen_engine(..., setpgrp=True) `` on Windows now merges
16+ ``CREATE_NEW_PROCESS_GROUP `` into ``creationflags `` instead of overriding.
17+ On Unix it now uses ``start_new_session `` instead of calling ``setpgrp `` in
18+ ``preexec_fn ``.
19+ * Declare that ``chess.svg `` produces SVG Tiny 1.2, and prepare SVG 2 forwards
20+ compatibility.
21+
22+ Bugfixes:
23+
24+ * Fix slightly off-center pawns in ``chess.svg ``.
25+ * Fix typing error in Python 3.10 (due to added ``int.bit_count ``).
26+
427New in v1.5.0
528-------------
629
Original file line number Diff line number Diff line change 2727
2828__email__ = "niklas.fiekas@backscattering.de"
2929
30- __version__ = "1.5 .0"
30+ __version__ = "1.6 .0"
3131
3232import collections
3333import copy
Original file line number Diff line number Diff line change @@ -25,6 +25,7 @@ def check_git():
2525 print (f"master is { behind } commit(s) behind origin/master" )
2626 sys .exit (1 )
2727
28+
2829def test ():
2930 print ("--- TEST ---------------------------------------------------------" )
3031 system ("tox --skip-missing-interpreters" )
You can’t perform that action at this time.
0 commit comments