Skip to content

Commit

Permalink
set release version 1.0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
gaborbata committed Apr 22, 2024
1 parent 2c98640 commit 8f5da7e
Show file tree
Hide file tree
Showing 9 changed files with 14 additions and 14 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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-SNAPSHOT.jar [password_file]
java -jar jpass-1.0.6-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.
Expand Down Expand Up @@ -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-SNAPSHOT.jar
java -Djpass.entry.details=TITLE -jar jpass-1.0.6-RELEASE.jar

2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ plugins {

compileJava.options.encoding = 'UTF-8'

version = '1.0.6-SNAPSHOT'
version = '1.0.6-RELEASE'

repositories {
mavenCentral()
Expand Down
6 changes: 3 additions & 3 deletions jpass.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "1.0.2",
"version": "1.0.6",
"description": "Password manager application with strong encryption (AES-256)",
"homepage": "https://github.com/gaborbata/jpass",
"license": {
Expand All @@ -17,8 +17,8 @@
"java/openjdk11"
]
},
"url": "https://github.com/gaborbata/jpass/releases/download/v1.0.5/jpass-1.0.5-RELEASE.zip",
"hash": "0c6fc348b55c21e69c2c34d042316fa023773ef42fb8b8ec478e59ed0658be51",
"url": "https://github.com/gaborbata/jpass/releases/download/v1.0.6/jpass-1.0.6-RELEASE.zip",
"hash": "ba390f0cc63aa88c5b667c3fe6d2c69d15aad2afa5f196beca110a331309173b",
"bin": "jpass.bat",
"shortcuts": [
[
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<groupId>jpass</groupId>
<artifactId>jpass</artifactId>
<packaging>jar</packaging>
<version>1.0.6-SNAPSHOT</version>
<version>1.0.6-RELEASE</version>
<name>JPass</name>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down
2 changes: 1 addition & 1 deletion src/main/distribution/jpass.bat
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ pause
goto end

:launch
start "JPass" /B "%JAVA_EXE%" -jar "%JPASS_HOME%\jpass-1.0.6-SNAPSHOT.jar" %*
start "JPass" /B "%JAVA_EXE%" -jar "%JPASS_HOME%\jpass-1.0.6-RELEASE.jar" %*
goto end

:end
2 changes: 1 addition & 1 deletion src/main/distribution/jpass.command
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,4 @@ else
fi

# execute jpass
exec "$JAVACMD" "$LAF_OPTS" -jar "$JPASS_HOME/jpass-1.0.6-SNAPSHOT.jar" "$@"
exec "$JAVACMD" "$LAF_OPTS" -jar "$JPASS_HOME/jpass-1.0.6-RELEASE.jar" "$@"
2 changes: 1 addition & 1 deletion src/main/distribution/jpass.sh
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,4 @@ else
fi

# execute jpass
exec "$JAVACMD" -jar "$JPASS_PATH/jpass-1.0.6-SNAPSHOT.jar" "$@"
exec "$JAVACMD" -jar "$JPASS_PATH/jpass-1.0.6-RELEASE.jar" "$@"
6 changes: 3 additions & 3 deletions src/main/distribution/readme.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# JPass - Password Manager 1.0.6-SNAPSHOT
# JPass - Password Manager 1.0.6-RELEASE

Overview
--------
Expand All @@ -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-SNAPSHOT.jar [password_file]
java -jar jpass-1.0.6-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,
Expand All @@ -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-SNAPSHOT.jar
java -Djpass.entry.details=TITLE -jar jpass-1.0.6-RELEASE.jar

License
-------
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/jpass/ui/JPassFrame.java
Original file line number Diff line number Diff line change
Expand Up @@ -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-SNAPSHOT";
public static final String PROGRAM_VERSION = "1.0.6-RELEASE";

private final JPopupMenu popup;
private final JPanel topContainerPanel;
Expand Down

0 comments on commit 8f5da7e

Please sign in to comment.