diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 68e381d50..705421688 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,18 @@ Changelog for python-chess ========================== +New in v1.8.0 +------------- + +Bugfixes: + +* Fix ``SquareSet.issuperset()`` and ``SquareSet.issubset()`` by swapping + their respective implementations. + +New features: + +* Read and write PGN comments like ``[%emt 0:05:21]``. + New in v1.7.0 ------------- diff --git a/chess/__init__.py b/chess/__init__.py index c54f23997..72baf64a4 100644 --- a/chess/__init__.py +++ b/chess/__init__.py @@ -27,7 +27,7 @@ __email__ = "niklas.fiekas@backscattering.de" -__version__ = "1.7.0" +__version__ = "1.8.0" import collections import copy