diff --git a/CHANGELOG.rst b/CHANGELOG.rst index dd1508f11..22bda3847 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,8 +1,8 @@ Changelog for python-chess ========================== -Upcoming in the next release ----------------------------- +New in v0.28.1 +-------------- Bugfixes: @@ -15,6 +15,7 @@ Changes: `is_castling()`, `is_kingside_castling()` and `is_queenside_castling()` now consistently return `False` for null moves. * Added `chess.engine.InfoDict` class with typed shorthands for common keys. +* Support `[Variant "3-check"]` (from chess.com PGNs). New in v0.28.0 -------------- diff --git a/chess/__init__.py b/chess/__init__.py index 0a37167e5..ed9f2f81f 100644 --- a/chess/__init__.py +++ b/chess/__init__.py @@ -26,7 +26,7 @@ __email__ = "niklas.fiekas@backscattering.de" -__version__ = "0.28.0" +__version__ = "0.28.1" import collections import copy