Skip to content

Commit cb65881

Browse files
committed
Prepare 1.9.3
1 parent 9d68cef commit cb65881

File tree

2 files changed

+18
-2
lines changed

2 files changed

+18
-2
lines changed

CHANGELOG.rst

+16
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,22 @@
11
Changelog for python-chess
22
==========================
33

4+
New in v1.9.3
5+
-------------
6+
7+
Bugfixes:
8+
9+
* Fix some valid characters were not accepted in PGN tag names.
10+
11+
Changes:
12+
13+
* Skip over syntactically invalid PGN tags.
14+
* Detect Antichess insufficient material with two opposing knights.
15+
16+
New features:
17+
18+
* Add `chess.Board.unicode(..., orientation=chess.WHITE)`.
19+
420
New in v1.9.2
521
-------------
622

chess/__init__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727

2828
__email__ = "[email protected]"
2929

30-
__version__ = "1.9.2"
30+
__version__ = "1.9.3"
3131

3232
import collections
3333
import copy
@@ -1221,7 +1221,7 @@ def __str__(self) -> str:
12211221

12221222
return "".join(builder)
12231223

1224-
def unicode(self, *, invert_color: bool = False, borders: bool = False, empty_square: str = "⭘", orientation:Color = WHITE) -> str:
1224+
def unicode(self, *, invert_color: bool = False, borders: bool = False, empty_square: str = "⭘", orientation: Color = WHITE) -> str:
12251225
"""
12261226
Returns a string representation of the board with Unicode pieces.
12271227
Useful for pretty-printing to a terminal.

0 commit comments

Comments
 (0)