diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 296079f2..05b899a2 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,14 @@ Changelog for python-chess ========================== +New in v1.11.1 (9th Oct 2024) +----------------------------- + +Bugfixes: + +* ``chess.engine``: Fix parsing of UCI options containing containing ``name``, + ``type``, ``default``, ``min``, or ``max``, e.g., ``mini``. + New in v1.11.0 (4th Oct 2024) ----------------------------- diff --git a/chess/__init__.py b/chess/__init__.py index 147f24be..a6a66500 100644 --- a/chess/__init__.py +++ b/chess/__init__.py @@ -11,7 +11,7 @@ __email__ = "niklas.fiekas@backscattering.de" -__version__ = "1.11.0" +__version__ = "1.11.1" import collections import copy