diff --git a/README.md b/README.md
index 48bbd935..6b1b0feb 100644
--- a/README.md
+++ b/README.md
@@ -24,7 +24,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-0.1.27-RELEASE.jar [password_file]
+ java -jar jpass-0.1.28-RELEASE.jar [password_file]
Download
--------
diff --git a/build.gradle b/build.gradle
index 530de30b..048b40a3 100644
--- a/build.gradle
+++ b/build.gradle
@@ -8,7 +8,7 @@ compileJava.options.encoding = 'UTF-8'
sourceCompatibility = 1.8
targetCompatibility = 1.8
-version = '0.1.27-RELEASE'
+version = '0.1.28-RELEASE'
repositories {
mavenCentral()
diff --git a/build.sbt b/build.sbt
index 8ca77672..e7afc2ea 100644
--- a/build.sbt
+++ b/build.sbt
@@ -2,7 +2,7 @@ organization:= "jpass.id"
name := "JPass"
-version := "0.1.27-RELEASE"
+version := "0.1.28-RELEASE"
libraryDependencies += "com.fasterxml.jackson.dataformat" % "jackson-dataformat-xml" % "2.12.4"
diff --git a/jpass.json b/jpass.json
index 511d9efd..27b81c0c 100644
--- a/jpass.json
+++ b/jpass.json
@@ -1,5 +1,5 @@
{
- "version": "0.1.27",
+ "version": "0.1.28",
"description": "Password manager application with strong encryption (AES-256)",
"homepage": "https://github.com/gaborbata/jpass",
"license": {
@@ -17,8 +17,8 @@
"java/openjdk11"
]
},
- "url": "https://github.com/gaborbata/jpass/releases/download/v0.1.27/jpass-0.1.27-RELEASE.zip",
- "hash": "7a89a378bac99b91afbe05a8e1afaaebc880f522ef974a94b3e67b681117ac43",
+ "url": "https://github.com/gaborbata/jpass/releases/download/v0.1.28/jpass-0.1.28-RELEASE.zip",
+ "hash": "6a2a4d283f7876653dd7749b74cb9504079d85f7c2b157dffaa02aa672bbb320",
"bin": "jpass.bat",
"shortcuts": [
[
diff --git a/pom.xml b/pom.xml
index 2c3ae37d..3994e364 100644
--- a/pom.xml
+++ b/pom.xml
@@ -4,7 +4,7 @@
jpass
jpass
jar
- 0.1.27-RELEASE
+ 0.1.28-RELEASE
JPass
UTF-8
diff --git a/src/main/dist/jpass.bat b/src/main/dist/jpass.bat
index 421529d4..3cf2abcb 100644
--- a/src/main/dist/jpass.bat
+++ b/src/main/dist/jpass.bat
@@ -19,7 +19,7 @@ if not "%REMOVED%" == "\" goto strip
set JPASS_HOME=%BASEDIR%
:launch
-start "JPass" /B "%JAVA_EXE%" -jar "%JPASS_HOME%\jpass-0.1.27-RELEASE.jar" %*
+start "JPass" /B "%JAVA_EXE%" -jar "%JPASS_HOME%\jpass-0.1.28-RELEASE.jar" %*
if %ERRORLEVEL% neq 0 goto fail
goto end
diff --git a/src/main/dist/jpass.command b/src/main/dist/jpass.command
index 5225ab57..a1a6b3e6 100644
--- a/src/main/dist/jpass.command
+++ b/src/main/dist/jpass.command
@@ -31,7 +31,7 @@ else
fi
# execute jpass
-exec "$JAVACMD" "$LAF_OPTS" -jar "$JPASS_HOME/jpass-0.1.27-RELEASE.jar" "$@"
+exec "$JAVACMD" "$LAF_OPTS" -jar "$JPASS_HOME/jpass-0.1.28-RELEASE.jar" "$@"
if [ "$?" != "0" ]; then
echo "Could not execute JPass (exit: $?)"
exit
diff --git a/src/main/dist/jpass.sh b/src/main/dist/jpass.sh
index 976de669..528712d9 100644
--- a/src/main/dist/jpass.sh
+++ b/src/main/dist/jpass.sh
@@ -31,7 +31,7 @@ else
fi
# execute jpass
-exec "$JAVACMD" -jar "$JPASS_PATH/jpass-0.1.27-RELEASE.jar" "$@"
+exec "$JAVACMD" -jar "$JPASS_PATH/jpass-0.1.28-RELEASE.jar" "$@"
if [ "$?" != "0" ]; then
echo "Could not execute JPass (exit: $?)"
exit
diff --git a/src/main/dist/readme.txt b/src/main/dist/readme.txt
index 0f67f5eb..72075ec4 100644
--- a/src/main/dist/readme.txt
+++ b/src/main/dist/readme.txt
@@ -1,4 +1,4 @@
-# JPass - Password Manager 0.1.27-RELEASE
+# JPass - Password Manager 0.1.28-RELEASE
Overview
--------
@@ -20,7 +20,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-0.1.27-RELEASE.jar [password_file]
+ java -jar jpass-0.1.28-RELEASE.jar [password_file]
Configuration
-------------
diff --git a/src/main/java/jpass/ui/JPassFrame.java b/src/main/java/jpass/ui/JPassFrame.java
index cd293a52..249807b2 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 = "0.1.27-RELEASE";
+ public static final String PROGRAM_VERSION = "0.1.28-RELEASE";
private final JPopupMenu popup;
private final JPanel topContainerPanel;