Skip to content

Commit

Permalink
Release version 0.5.0 (#13)
Browse files Browse the repository at this point in the history
`ChessKit 0.5.0` release candidate.
  • Loading branch information
pdil authored Apr 14, 2024
2 parents fee9636 + 2e6408d commit 1b1fc96
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
8 changes: 3 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,10 @@
# [unreleased]
# ChessKit 0.5.0
Released Sunday, April 14, 2024.

#### Improvements
* PGN parsing now supports tag pairs (for example `[Event "Name"]`) located at the top of the PGN format, see [Issue #8](https://github.com/chesskit-app/chesskit-swift/issues/8).

#### Bug Fixes
* Fix issue where king is allowed to castle in check, see [Issue #11](https://github.com/chesskit-app/chesskit-swift/issues/11).

#### Breaking Changes
### Breaking Changes
* Remove `color` parameter from `Move.init(san:color:position:)` initializer.
* It was not being used, can be removed from any initializer call where it was included.
* The new initializer is simply `Move.init(san:position:)`.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ A Swift package for efficiently implementing chess logic.

* Add a package dependency to your Xcode project or Swift Package:
``` swift
.package(url: "https://github.com/chesskit-app/chesskit-swift", from: "0.4.0")
.package(url: "https://github.com/chesskit-app/chesskit-swift", from: "0.5.0")
```

* Next you can import `ChessKit` to use it in your Swift code:
Expand Down

0 comments on commit 1b1fc96

Please sign in to comment.