From 53a8a9e11f7401d4d689543f82b6c2b20f4c79e1 Mon Sep 17 00:00:00 2001 From: Niklas Fiekas Date: Thu, 7 Oct 2021 19:14:05 +0200 Subject: [PATCH] Prepare 1.7.0 --- CHANGELOG.rst | 14 ++++++++++++++ chess/__init__.py | 2 +- 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 1e6f941dc..68e381d50 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,20 @@ Changelog for python-chess ========================== +New in v1.7.0 +------------- + +New features: + +* Added new models for ``chess.engine.Score.wdl()``: ``sf`` (the new default) + and ``sf14``. +* Added ``chess.Board.piece_map()``. + +Bugfixes: + +* ``chess.pgn``: Fix skipping with nested variations. +* ``chess.svg``: Make check gradient compatible with QtSvg. + New in v1.6.1 ------------- diff --git a/chess/__init__.py b/chess/__init__.py index 25ca18344..50c1a8e2a 100644 --- a/chess/__init__.py +++ b/chess/__init__.py @@ -27,7 +27,7 @@ __email__ = "niklas.fiekas@backscattering.de" -__version__ = "1.6.1" +__version__ = "1.7.0" import collections import copy