From abd0fc4d0b07dbb86009e0a089e796f918ae732b Mon Sep 17 00:00:00 2001 From: Niklas Fiekas Date: Wed, 7 Apr 2021 10:42:27 +0200 Subject: [PATCH] Prepare 1.5.0 --- CHANGELOG.rst | 6 +++--- chess/__init__.py | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index dfe66d2e5..5eb6fac96 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,15 +1,15 @@ Changelog for python-chess ========================== -Upcoming in the next release ----------------------------- +New in v1.5.0 +------------- Bugfixes: * Fixed typing of ``chess.pgn.Mainline.__reversed__()``. It is now a generator, and ``chess.pgn.ReverseMainline`` has been **removed**. This is a breaking change but a required bugfix. -* Implement **ponderhit** for consecutive pondering calls to +* Implement UCI **ponderhit** for consecutive calls to ``chess.engine.Protocol.play(..., ponder=True)``. Previously, the pondering search was always stopped and restarted. * Provide the full move stack, not just the position, for UCI pondering. diff --git a/chess/__init__.py b/chess/__init__.py index 8aeb83833..ac4d48ff1 100644 --- a/chess/__init__.py +++ b/chess/__init__.py @@ -27,7 +27,7 @@ __email__ = "niklas.fiekas@backscattering.de" -__version__ = "1.4.0" +__version__ = "1.5.0" import collections import copy