Skip to content

Commit dc7d0b1

Browse files
committed
Prepare release of 0.3.0
1 parent 05ea5f5 commit dc7d0b1

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

CHANGELOG.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ is more important to get things right, than to be consistent with previous
66
versions. Use this changelog to see what changed in a new release, because this
77
might include API breaking changes.
88

9-
Up for the next release
10-
-----------------------
9+
New in v0.3.0
10+
-------------
1111

1212
* Rename property `half_moves` of `Bitboard` to `halfmove_clock`.
1313

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -149,8 +149,8 @@ Features
149149
150150
>>> import chess.pgn
151151
152-
>>> from __future__ import print_function # Python 2 compability of
153-
>>> # this example
152+
>>> from __future__ import print_function # Python 2 compability for
153+
>>> # this example.
154154
155155
>>> pgn = open("data/games/molinari-bordais-1979.pgn")
156156
>>> first_game = chess.pgn.read_game(pgn)

chess/__init__.py

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

2121
__email__ = "[email protected]"
2222

23-
__version__ = "0.2.0"
23+
__version__ = "0.3.0"
2424

2525
import collections
2626
import random

0 commit comments

Comments
 (0)