From c05d99575b547f1f331e56eb95304906d66c4338 Mon Sep 17 00:00:00 2001 From: Gabor Bata Date: Tue, 5 Mar 2024 11:20:24 +0100 Subject: [PATCH] set snapshot version --- README.md | 2 +- build.gradle | 2 +- build.sbt | 2 +- pom.xml | 2 +- src/main/distribution/jpass.bat | 2 +- src/main/distribution/jpass.command | 2 +- src/main/distribution/jpass.sh | 2 +- src/main/distribution/readme.txt | 4 ++-- src/main/java/jpass/ui/JPassFrame.java | 2 +- 9 files changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 186faee..f51ad58 100644 --- a/README.md +++ b/README.md @@ -26,7 +26,7 @@ Usage Java 8 or later is recommended to run JPass. You can run the application from the command line by typing (the password file is optional): - java -jar jpass-1.0.5-RELEASE.jar [password_file] + java -jar jpass-1.0.6-SNAPSHOT.jar [password_file] For convenience, batch/shell scripts are also available for launching JPass for various platforms (i.e. `jpass.bat` for Windows, `jpass.sh` for Linux, `jpass.command` for macOS). Please make sure `PATH`, or `JAVA_HOME` environment variables point to a valid Java installation. diff --git a/build.gradle b/build.gradle index c7113d3..50b50b4 100644 --- a/build.gradle +++ b/build.gradle @@ -10,7 +10,7 @@ plugins { compileJava.options.encoding = 'UTF-8' -version = '1.0.5-RELEASE' +version = '1.0.6-SNAPSHOT' repositories { mavenCentral() diff --git a/build.sbt b/build.sbt index 243942e..b58af50 100644 --- a/build.sbt +++ b/build.sbt @@ -2,7 +2,7 @@ organization:= "jpass.id" name := "JPass" -version := "1.0.5-RELEASE" +version := "1.0.6-SNAPSHOT" libraryDependencies += "com.fasterxml.jackson.dataformat" % "jackson-dataformat-xml" % "2.15.3" diff --git a/pom.xml b/pom.xml index 97f931c..b9fe237 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ jpass jpass jar - 1.0.5-RELEASE + 1.0.6-SNAPSHOT JPass UTF-8 diff --git a/src/main/distribution/jpass.bat b/src/main/distribution/jpass.bat index e3503e7..35ddf23 100644 --- a/src/main/distribution/jpass.bat +++ b/src/main/distribution/jpass.bat @@ -27,7 +27,7 @@ pause goto end :launch -start "JPass" /B "%JAVA_EXE%" -jar "%JPASS_HOME%\jpass-1.0.5-RELEASE.jar" %* +start "JPass" /B "%JAVA_EXE%" -jar "%JPASS_HOME%\jpass-1.0.6-SNAPSHOT.jar" %* goto end :end diff --git a/src/main/distribution/jpass.command b/src/main/distribution/jpass.command index 4fcefbe..1931113 100644 --- a/src/main/distribution/jpass.command +++ b/src/main/distribution/jpass.command @@ -33,4 +33,4 @@ else fi # execute jpass -exec "$JAVACMD" "$LAF_OPTS" -jar "$JPASS_HOME/jpass-1.0.5-RELEASE.jar" "$@" +exec "$JAVACMD" "$LAF_OPTS" -jar "$JPASS_HOME/jpass-1.0.6-SNAPSHOT.jar" "$@" diff --git a/src/main/distribution/jpass.sh b/src/main/distribution/jpass.sh index 4455b7d..f505812 100644 --- a/src/main/distribution/jpass.sh +++ b/src/main/distribution/jpass.sh @@ -33,4 +33,4 @@ else fi # execute jpass -exec "$JAVACMD" -jar "$JPASS_PATH/jpass-1.0.5-RELEASE.jar" "$@" +exec "$JAVACMD" -jar "$JPASS_PATH/jpass-1.0.6-SNAPSHOT.jar" "$@" diff --git a/src/main/distribution/readme.txt b/src/main/distribution/readme.txt index 9a7a0a0..f40bf13 100644 --- a/src/main/distribution/readme.txt +++ b/src/main/distribution/readme.txt @@ -1,4 +1,4 @@ -# JPass - Password Manager 1.0.5-RELEASE +# JPass - Password Manager 1.0.6-SNAPSHOT Overview -------- @@ -21,7 +21,7 @@ Java 8 or later is recommended to run JPass. You can run the application from the command line by typing (the password file is optional): - java -jar jpass-1.0.5-RELEASE.jar [password_file] + java -jar jpass-1.0.6-SNAPSHOT.jar [password_file] For convenience, batch/shell scripts are also available for launching JPass for various platforms (i.e. `jpass.bat` for Windows, `jpass.sh` for Linux, diff --git a/src/main/java/jpass/ui/JPassFrame.java b/src/main/java/jpass/ui/JPassFrame.java index 88b12e0..6786248 100644 --- a/src/main/java/jpass/ui/JPassFrame.java +++ b/src/main/java/jpass/ui/JPassFrame.java @@ -87,7 +87,7 @@ public final class JPassFrame extends JFrame { private static JPassFrame instance; public static final String PROGRAM_NAME = "JPass Password Manager"; - public static final String PROGRAM_VERSION = "1.0.5-RELEASE"; + public static final String PROGRAM_VERSION = "1.0.6-SNAPSHOT"; private final JPopupMenu popup; private final JPanel topContainerPanel;