From ac2a74b9e8921852dab0119d468d34c941bb4c89 Mon Sep 17 00:00:00 2001 From: Niklas Fiekas Date: Tue, 25 Jun 2019 15:22:15 +0200 Subject: [PATCH] Prepare 0.28.1 --- CHANGELOG.rst | 5 +++-- chess/__init__.py | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) 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