Skip to content

Commit 2dc6771

Browse files
author
Tage Johansson
committed
Release 0.6.1.
1 parent 67e6108 commit 2dc6771

5 files changed

Lines changed: 7 additions & 6 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8-
## [Unreleased]
8+
## [0.6.1] -- 2024-11-13
99

1010
### Added
1111

@@ -49,5 +49,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
4949
- The shorthand `pl` for the `player` command has been changed to `plr`.
5050

5151
[unreleased]: https://github.com/tage64/chess-cli/compare/v0.6.0...HEAD
52+
[0.6.1]: https://github.com/tage64/chess-cli/compare/v0.6.1...v0.6.0
5253
[0.6.0]: https://github.com/tage64/chess-cli/compare/v0.6.0...v0.5.0
5354
[0.5.0]: https://github.com/tage64/chess-cli/compare/v0.5.0...v0.4.2

chess_cli/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# __metadata__ = importlib.metadata.metadata("chess-cli")
77
# __version__ = __metadata__["version"]
88
# __author__ = __metadata__["author"]
9-
__version__ = "0.6.0"
9+
__version__ = "0.6.1"
1010
__author__ = "Tage Johansson"
1111
__package__ = "chess_cli"
1212

chess_cli/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ def get_game(self, idx: int) -> chess.pgn.Game:
194194
assert game_handle.game_node is not None
195195
return game_handle.game_node.game()
196196

197-
def visit_game[T](self, idx: int, visitor: chess.pgn.BaseVisitor[T]) -> T | None:
197+
def visit_game(self, idx: int, visitor: chess.pgn.BaseVisitor):
198198
"""Visit a game in the game list without loading it into memory."""
199199
assert 0 <= idx < len(self._games)
200200
game_handle = self._games[idx]

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[project]
22
name = "chess-cli"
33
requires-python = ">=3.12, <3.13"
4-
version = "0.6.0"
4+
version = "0.6.1"
55
license = "GPL-3.0-or-later"
66

77
[project.urls]
@@ -10,7 +10,7 @@ documentation = "https://github.com/tage64/chess-cli/blob/main/doc/manual.md"
1010

1111
[tool.poetry]
1212
name = "chess-cli"
13-
version = "0.6.0"
13+
version = "0.6.1"
1414
description = "A repl to edit and analyse chess games."
1515
authors = ["Tage Johansson <tajo9185@student.uu.se>"]
1616
license = "GPL-3.0-or-later"

windows_setup.nsi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
; Custom defines
88
!define NAME "Chess-CLI"
99
!define APPFILE "chess-cli.exe"
10-
!define VERSION "0.6.0"
10+
!define VERSION "0.6.1"
1111
!define SLUG "${NAME} v${VERSION}"
1212
; General
1313
Name "${NAME}"

0 commit comments

Comments
 (0)