From 4cff46c3d6ae29c28608be46d97672865dde76fb Mon Sep 17 00:00:00 2001 From: Gabor Bata Date: Tue, 3 Oct 2023 11:20:25 +0200 Subject: [PATCH] Update version for release --- 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 edf82e2..fd83c77 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.3-RELEASE.jar [password_file] + java -jar jpass-1.0.4-RELEASE.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 12216ad..11c2af0 100644 --- a/build.gradle +++ b/build.gradle @@ -12,7 +12,7 @@ compileJava.options.encoding = 'UTF-8' sourceCompatibility = 1.8 targetCompatibility = 1.8 -version = '1.0.3-RELEASE' +version = '1.0.4-RELEASE' repositories { mavenCentral() diff --git a/build.sbt b/build.sbt index 12a5358..cb842fe 100644 --- a/build.sbt +++ b/build.sbt @@ -2,7 +2,7 @@ organization:= "jpass.id" name := "JPass" -version := "1.0.3-RELEASE" +version := "1.0.4-RELEASE" libraryDependencies += "com.fasterxml.jackson.dataformat" % "jackson-dataformat-xml" % "2.15.2" diff --git a/pom.xml b/pom.xml index df8acfa..3989a6e 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ jpass jpass jar - 1.0.3-RELEASE + 1.0.4-RELEASE JPass UTF-8 diff --git a/src/main/distribution/jpass.bat b/src/main/distribution/jpass.bat index f98f701..83f312e 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.3-RELEASE.jar" %* +start "JPass" /B "%JAVA_EXE%" -jar "%JPASS_HOME%\jpass-1.0.4-RELEASE.jar" %* goto end :end diff --git a/src/main/distribution/jpass.command b/src/main/distribution/jpass.command index 83b76f3..82091b3 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.3-RELEASE.jar" "$@" +exec "$JAVACMD" "$LAF_OPTS" -jar "$JPASS_HOME/jpass-1.0.4-RELEASE.jar" "$@" diff --git a/src/main/distribution/jpass.sh b/src/main/distribution/jpass.sh index 50e4b48..63f572b 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.3-RELEASE.jar" "$@" +exec "$JAVACMD" -jar "$JPASS_PATH/jpass-1.0.4-RELEASE.jar" "$@" diff --git a/src/main/distribution/readme.txt b/src/main/distribution/readme.txt index a1ad604..ef35c67 100644 --- a/src/main/distribution/readme.txt +++ b/src/main/distribution/readme.txt @@ -1,4 +1,4 @@ -# JPass - Password Manager 1.0.3-RELEASE +# JPass - Password Manager 1.0.4-RELEASE 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.3-RELEASE.jar [password_file] + java -jar jpass-1.0.4-RELEASE.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 44fe85c..263ea24 100644 --- a/src/main/java/jpass/ui/JPassFrame.java +++ b/src/main/java/jpass/ui/JPassFrame.java @@ -77,7 +77,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.3-RELEASE"; + public static final String PROGRAM_VERSION = "1.0.4-RELEASE"; private final JPopupMenu popup; private final JPanel topContainerPanel;