Skip to content

Commit 1483978

Browse files
committed
bump version
1 parent 46acd25 commit 1483978

2 files changed

Lines changed: 4 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
v0.0.5
2+
- Fixed castling san generation
3+
14
v0.0.4
25
- Added `Board::legal_destinations_from` to get the bitboard representing all legal destinations from a given square.
36

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "candidate"
3-
version = "0.0.4"
3+
version = "0.0.5"
44
edition = "2021"
55
authors = ["Kenneth Cochran <me@icodesometime.com>", "Jordan Bray <jordanbray@gmail.com>"]
66
description = "This is a fast chess move generator. It has a very good set of documentation, so you should take advantage of that. It (now) generates all lookup tables with a build.rs file, which means that very little pseudo-legal move generation requires branching. There are some convenience functions that are exposed to, for example, find all the squares between two squares. This uses a copy-on-make style structure, and the Board structure is as slimmed down as possible to reduce the cost of copying the board. There are places to improve perft-test performance further, but I instead opt to be more feature-complete to make it useful in real applications. For example, I generate both a hash of the board and a pawn-hash of the board for use in evaluation lookup tables (using Zobrist hashing). There are two ways to generate moves, one is faster, the other has more features that will be useful if making a chess engine. See the documentation for more details."

0 commit comments

Comments
 (0)