diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index fc20f47..af81854 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -33,4 +33,4 @@ jobs: uses: actions/upload-artifact@v3.1.3 with: name: artifact - path: target/tui-mines-game-1.0-jar-with-dependencies.jar + path: target/tui-mines-game-1.0.1-jar-with-dependencies.jar diff --git a/deb/DEBIAN/control b/deb/DEBIAN/control index 73c74c9..2323aab 100644 --- a/deb/DEBIAN/control +++ b/deb/DEBIAN/control @@ -1,5 +1,5 @@ Package: tui-mines -Version: 1.0 +Version: 1.0.1 Maintainer: Defective Description: A terminal based Minesweeper clone TUI Mines is a clone of the classis Minesweeper game diff --git a/deb/usr/games/tui-mines b/deb/usr/games/tui-mines index 2b5a218..092a9f0 100755 --- a/deb/usr/games/tui-mines +++ b/deb/usr/games/tui-mines @@ -1,2 +1,2 @@ #!/bin/sh -java -jar /usr/share/java/tui-mines/tui-mines-game-1.0-jar-with-dependencies.jar $@ \ No newline at end of file +java -jar /usr/share/java/tui-mines/tui-mines-game-1.0.1-jar-with-dependencies.jar $@ \ No newline at end of file diff --git a/pom.xml b/pom.xml index 73676f3..5025402 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ io.github.defective4.javajam.tuimines tui-mines-game - 1.0 + 1.0.1 Terminal based Minesweeper game 2023 @@ -68,9 +68,9 @@ gui - target/tui-mines-game-1.0-jar-with-dependencies.jar + target/tui-mines-game-1.0.1-jar-with-dependencies.jar - target/TUI-Mines-1.0.exe + target/TUI-Mines-1.0.1.exe . normal false @@ -83,12 +83,12 @@ 1.8 - 1.0.0.0 - 1.0 + 1.0.1.0 + 1.0.1 The TUI Mines game Defective - 1.0.0.0 - 1.0 + 1.0.1.0 + 1.0.1 TUI-Mines TUI-Mines TUI-Mines.exe diff --git a/src/main/java/io/github/defective4/javajam/tuisweeper/Main.java b/src/main/java/io/github/defective4/javajam/tuisweeper/Main.java index 966b327..c331fff 100644 --- a/src/main/java/io/github/defective4/javajam/tuisweeper/Main.java +++ b/src/main/java/io/github/defective4/javajam/tuisweeper/Main.java @@ -43,7 +43,7 @@ */ public final class Main { - public static final String VERSION = "1.0"; + public static final String VERSION = "1.0.1"; private Main() { }