Skip to content

Commit

Permalink
Prepare 0.23.7
Browse files Browse the repository at this point in the history
  • Loading branch information
niklasf committed Jun 26, 2018
1 parent dcb58a6 commit bb6b4b0
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 1 deletion.
24 changes: 24 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,30 @@
Changelog for python-chess
==========================

New in v0.23.7
--------------

Bugfixes:

* Fixed `ThreeCheckBoard.mirror()` and `CrazyhouseBoard.mirror()`, which
were previously resetting remaining checks and pockets respectively.
Thanks @QueensGambit.

Changes:

* `Board.move_stack` is now guaranteed to be UCI compatible with respect to
the representation of castling moves and `board.chess960`.
* Drop support for Python 3.3, which is long past end of life.
* `chess.uci`: The `position` command now manages `UCI_Chess960` and
`UCI_Variant` automatically.
* `chess.uci`: The `position` command will now always send the entire history
of moves from the root position.
* Various coding style fixes and improvements. Thanks @hugovk.

New features:

* Added `Board.root()`.

New in v0.23.6
--------------

Expand Down
2 changes: 1 addition & 1 deletion chess/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

__email__ = "niklas.fiekas@backscattering.de"

__version__ = "0.23.6"
__version__ = "0.23.7"

import collections
import copy
Expand Down

0 comments on commit bb6b4b0

Please sign in to comment.