From 4cafd3aa5bd29b3717d03f0d3f0b019e2bc02f14 Mon Sep 17 00:00:00 2001 From: Gabor Bata Date: Mon, 22 Apr 2024 11:31:47 +0200 Subject: [PATCH] set snapshot version for 1.0.7 --- README.md | 4 ++-- build.gradle | 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 | 6 +++--- src/main/java/jpass/ui/JPassFrame.java | 2 +- 8 files changed, 11 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index f819e70..9d7fadc 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.6-RELEASE.jar [password_file] + java -jar jpass-1.0.7-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. @@ -71,5 +71,5 @@ resources folder for possible configuration values. Each configuration property can be overridden by system properties, with the `jpass.` key prefix, e.g. - java -Djpass.entry.details=TITLE -jar jpass-1.0.6-RELEASE.jar + java -Djpass.entry.details=TITLE -jar jpass-1.0.7-SNAPSHOT.jar diff --git a/build.gradle b/build.gradle index a850974..aed42eb 100644 --- a/build.gradle +++ b/build.gradle @@ -11,7 +11,7 @@ plugins { compileJava.options.encoding = 'UTF-8' -version = '1.0.6-RELEASE' +version = '1.0.7-SNAPSHOT' repositories { mavenCentral() diff --git a/pom.xml b/pom.xml index de51ef5..d1d88cd 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ jpass jpass jar - 1.0.6-RELEASE + 1.0.7-SNAPSHOT JPass UTF-8 diff --git a/src/main/distribution/jpass.bat b/src/main/distribution/jpass.bat index db2b379..1ab5e44 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.6-RELEASE.jar" %* +start "JPass" /B "%JAVA_EXE%" -jar "%JPASS_HOME%\jpass-1.0.7-SNAPSHOT.jar" %* goto end :end diff --git a/src/main/distribution/jpass.command b/src/main/distribution/jpass.command index be8529f..cc2d44c 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.6-RELEASE.jar" "$@" +exec "$JAVACMD" "$LAF_OPTS" -jar "$JPASS_HOME/jpass-1.0.7-SNAPSHOT.jar" "$@" diff --git a/src/main/distribution/jpass.sh b/src/main/distribution/jpass.sh index 0d67e7a..4a91486 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.6-RELEASE.jar" "$@" +exec "$JAVACMD" -jar "$JPASS_PATH/jpass-1.0.7-SNAPSHOT.jar" "$@" diff --git a/src/main/distribution/readme.txt b/src/main/distribution/readme.txt index 81446f3..6c217a9 100644 --- a/src/main/distribution/readme.txt +++ b/src/main/distribution/readme.txt @@ -1,4 +1,4 @@ -# JPass - Password Manager 1.0.6-RELEASE +# JPass - Password Manager 1.0.7-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.6-RELEASE.jar [password_file] + java -jar jpass-1.0.7-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, @@ -45,7 +45,7 @@ Default configurations can be overridden in `jpass.properties` file: Each configuration property can be overridden by system properties, with the `jpass.` key prefix, e.g. - java -Djpass.entry.details=TITLE -jar jpass-1.0.6-RELEASE.jar + java -Djpass.entry.details=TITLE -jar jpass-1.0.7-SNAPSHOT.jar License ------- diff --git a/src/main/java/jpass/ui/JPassFrame.java b/src/main/java/jpass/ui/JPassFrame.java index 473a66a..c9f8d24 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.6-RELEASE"; + public static final String PROGRAM_VERSION = "1.0.7-SNAPSHOT"; private final JPopupMenu popup; private final JPanel topContainerPanel;