Skip to content

Commit

Permalink
Bump version to 1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Defective4 committed Oct 6, 2023
1 parent 3494920 commit cc82f30
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion deb/DEBIAN/control
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Package: tui-mines
Version: 1.0
Version: 1.0.1
Maintainer: Defective <def3ctive4@gmail.com>
Description: A terminal based Minesweeper clone
TUI Mines is a clone of the classis Minesweeper game
Expand Down
2 changes: 1 addition & 1 deletion deb/usr/games/tui-mines
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
#!/bin/sh
java -jar /usr/share/java/tui-mines/tui-mines-game-1.0-jar-with-dependencies.jar $@
java -jar /usr/share/java/tui-mines/tui-mines-game-1.0.1-jar-with-dependencies.jar $@
14 changes: 7 additions & 7 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>io.github.defective4.javajam.tuimines</groupId>
<artifactId>tui-mines-game</artifactId>
<version>1.0</version>
<version>1.0.1</version>
<description>Terminal based Minesweeper game</description>
<inceptionYear>2023</inceptionYear>

Expand Down Expand Up @@ -68,9 +68,9 @@
</goals>
<configuration>
<headerType>gui</headerType>
<jar>target/tui-mines-game-1.0-jar-with-dependencies.jar
<jar>target/tui-mines-game-1.0.1-jar-with-dependencies.jar
</jar>
<outfile>target/TUI-Mines-1.0.exe</outfile>
<outfile>target/TUI-Mines-1.0.1.exe</outfile>
<chdir>.</chdir>
<priority>normal</priority>
<stayAlive>false</stayAlive>
Expand All @@ -83,12 +83,12 @@
<minVersion>1.8</minVersion>
</jre>
<versionInfo>
<fileVersion>1.0.0.0</fileVersion>
<txtFileVersion>1.0</txtFileVersion>
<fileVersion>1.0.1.0</fileVersion>
<txtFileVersion>1.0.1</txtFileVersion>
<fileDescription>The TUI Mines game</fileDescription>
<copyright>Defective</copyright>
<productVersion>1.0.0.0</productVersion>
<txtProductVersion>1.0</txtProductVersion>
<productVersion>1.0.1.0</productVersion>
<txtProductVersion>1.0.1</txtProductVersion>
<productName>TUI-Mines</productName>
<internalName>TUI-Mines</internalName>
<originalFilename>TUI-Mines.exe</originalFilename>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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() {
}
Expand Down

0 comments on commit cc82f30

Please sign in to comment.