Skip to content

Commit 694bc64

Browse files
committed
Prepare 0.22.2
1 parent 951e3a5 commit 694bc64

File tree

2 files changed

+21
-1
lines changed

2 files changed

+21
-1
lines changed

CHANGELOG.rst

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,26 @@
11
Changelog for python-chess
22
==========================
33

4+
New in v0.22.2
5+
--------------
6+
7+
Bugfixes:
8+
9+
* In standard chess promoted pieces were incorrectly considered as
10+
distinguishable from normal pieces with regard to position equality
11+
and threefold repetition. Thanks to kn-sq-tb for reporting.
12+
13+
Changes:
14+
15+
* The PGN `game.headers` are now a custom mutable mapping that validates the
16+
validity of tag names.
17+
* Basic attack and pin methods moved to `BaseBoard`.
18+
* Documentation fixes and improvements.
19+
20+
New features:
21+
22+
* Added `Board.lan()` for long algebraic notation.
23+
424
New in v0.22.1
525
--------------
626

chess/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626

2727
__email__ = "[email protected]"
2828

29-
__version__ = "0.22.1"
29+
__version__ = "0.22.2"
3030

3131
import collections
3232
import copy

0 commit comments

Comments
 (0)