diff --git a/README.md b/README.md index 03d319d..8352f0d 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ Java Chess Stockfish provides a java integration for the Stockfish chess engine. io.github.guillaumcn chess-stockfish - 1.0.3 + 1.0.4 ``` @@ -28,7 +28,7 @@ public class Main { Stockfish stockfish = new Stockfish(pw, sc); // Example of use - + // Update options stockfish.setOptions(StockfishOptions.builder().threads(20).build()); // Move to start position @@ -62,6 +62,7 @@ public class Main { * Version 1.0.1 (2023-12-05) - Make Stockfish integration thread safe * Version 1.0.2 (2024-01-03) - Use lombok for project * Version 1.0.3 (2024-01-03) - Fixed build and publication +* Version 1.0.4 (2024-05-07) - Added custom exceptions ## Credits diff --git a/engines/pom.xml b/engines/pom.xml index f78ed83..535c134 100644 --- a/engines/pom.xml +++ b/engines/pom.xml @@ -6,7 +6,7 @@ io.github.guillaumcn java-chess-modules - 1.0.3 + 1.0.4 chess-engines diff --git a/pom.xml b/pom.xml index 3317ba9..fe289ff 100644 --- a/pom.xml +++ b/pom.xml @@ -6,9 +6,11 @@ 4.0.0 io.github.guillaumcn java-chess-modules - 1.0.3 + 1.0.4 Java modules for chess - Provides java modules for chess including Stockfish engine implementation + Provides java modules for chess including Stockfish engine + implementation + https://github.com/guillaumcn/java-chess-modules pom diff --git a/stockfish/pom.xml b/stockfish/pom.xml index 1e842e6..ead0592 100644 --- a/stockfish/pom.xml +++ b/stockfish/pom.xml @@ -6,7 +6,7 @@ io.github.guillaumcn java-chess-modules - 1.0.3 + 1.0.4 chess-stockfish