Skip to content

Commit

Permalink
chore: updated pom + changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
guillaumcn committed May 6, 2024
1 parent 95e609e commit 22bdc59
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 6 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Java Chess Stockfish provides a java integration for the Stockfish chess engine.
<dependency>
<groupId>io.github.guillaumcn</groupId>
<artifactId>chess-stockfish</artifactId>
<version>1.0.3</version>
<version>1.0.4</version>
</dependency>

```
Expand All @@ -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
Expand Down Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion engines/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>io.github.guillaumcn</groupId>
<artifactId>java-chess-modules</artifactId>
<version>1.0.3</version>
<version>1.0.4</version>
</parent>

<artifactId>chess-engines</artifactId>
Expand Down
6 changes: 4 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,11 @@
<modelVersion>4.0.0</modelVersion>
<groupId>io.github.guillaumcn</groupId>
<artifactId>java-chess-modules</artifactId>
<version>1.0.3</version>
<version>1.0.4</version>
<name>Java modules for chess</name>
<description>Provides java modules for chess including Stockfish engine implementation</description>
<description>Provides java modules for chess including Stockfish engine
implementation
</description>
<url>https://github.com/guillaumcn/java-chess-modules</url>
<packaging>pom</packaging>
<licenses>
Expand Down
2 changes: 1 addition & 1 deletion stockfish/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>io.github.guillaumcn</groupId>
<artifactId>java-chess-modules</artifactId>
<version>1.0.3</version>
<version>1.0.4</version>
</parent>

<artifactId>chess-stockfish</artifactId>
Expand Down

0 comments on commit 22bdc59

Please sign in to comment.