From 9a097cf520144e822b61fbe901960871c37ca140 Mon Sep 17 00:00:00 2001 From: Niklas Fiekas Date: Wed, 7 Oct 2015 16:00:17 +0200 Subject: [PATCH] Prepare release of v0.12.1 --- CHANGELOG.rst | 11 +++++++++++ chess/__init__.py | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index df2b5c030..03b1ad601 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -6,9 +6,20 @@ 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.1 +-------------- + +Changes: + +* Robust handling of invalid castling rights. You can also use the new + method `Board.clean_castling_rights()` to get the subset of strictly valid + castling rights. + New in v0.12.0 -------------- +New features: + * Python 2.6 support. Patch by vdbergh. * Pure Python Gaviota tablebase probing. Thanks to Jean-Noël Avila. diff --git a/chess/__init__.py b/chess/__init__.py index 7bfafffa2..79f4c3b67 100644 --- a/chess/__init__.py +++ b/chess/__init__.py @@ -20,7 +20,7 @@ __email__ = "niklas.fiekas@tu-clausthal.de" -__version__ = "0.12.0" +__version__ = "0.12.1" import copy import re