From a7be166c59740d3fad199c5444a3593090a1ba0d Mon Sep 17 00:00:00 2001 From: Niklas Fiekas Date: Fri, 9 Oct 2015 10:32:33 +0200 Subject: [PATCH] Prepare release of v0.12.3 --- CHANGELOG.rst | 8 ++++++++ chess/__init__.py | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index ded865033..4dd20f934 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -6,6 +6,14 @@ is more important to get things right, than to be consistent with previous versions. Use this changelog to see what changed in a new release, because this might include API breaking changes. +New in v0.12.3 +-------------- + +Bugfixes: + +* Some invalid castling rights were silently ignored by `Board.set_fen()`. Now + it is ensured information is stored for retrieval using `Board.status()`. + New in v0.12.2 -------------- diff --git a/chess/__init__.py b/chess/__init__.py index 29c454f1c..253b5ff6b 100644 --- a/chess/__init__.py +++ b/chess/__init__.py @@ -20,7 +20,7 @@ __email__ = "niklas.fiekas@tu-clausthal.de" -__version__ = "0.12.2" +__version__ = "0.12.3" import copy import re