From d93c0b237b33d0652197958cd4a1cdeb72b7f7a2 Mon Sep 17 00:00:00 2001 From: Niklas Fiekas Date: Thu, 23 Dec 2021 14:37:35 +0100 Subject: [PATCH] Prepare 1.8.0 --- CHANGELOG.rst | 12 ++++++++++++ chess/__init__.py | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) 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