Skip to content

Commit

Permalink
Update version
Browse files Browse the repository at this point in the history
  • Loading branch information
gaborbata committed Sep 20, 2022
1 parent 6f530b9 commit c2e80f0
Show file tree
Hide file tree
Showing 10 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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-1.0.0-SNAPSHOT.jar [password_file]
java -jar jpass-1.0.0-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
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ compileJava.options.encoding = 'UTF-8'
sourceCompatibility = 1.8
targetCompatibility = 1.8

version = '1.0.0-SNAPSHOT'
version = '1.0.0-RELEASE'

repositories {
mavenCentral()
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ organization:= "jpass.id"

name := "JPass"

version := "1.0.0-SNAPSHOT"
version := "1.0.0-RELEASE"

libraryDependencies += "com.fasterxml.jackson.dataformat" % "jackson-dataformat-xml" % "2.12.4"

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": "0.1.29",
"version": "1.0.0",
"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/v0.1.29/jpass-0.1.29-RELEASE.zip",
"hash": "ed13147e7f3e3b6a394c0367830997d4fde214a219452437f96f49b78cdf1de6",
"url": "https://github.com/gaborbata/jpass/releases/download/v1.0.0/jpass-1.0.0-RELEASE.zip",
"hash": "316eeaa25b1fd1a2e311e0a5e5fbeb1e43c936fa7c6c37d97d4ca5bddc4e39ef",
"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.0-SNAPSHOT</version>
<version>1.0.0-RELEASE</version>
<name>JPass</name>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down
2 changes: 1 addition & 1 deletion src/main/dist/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.0-SNAPSHOT.jar" %*
start "JPass" /B "%JAVA_EXE%" -jar "%JPASS_HOME%\jpass-1.0.0-RELEASE.jar" %*
goto end

:end
2 changes: 1 addition & 1 deletion src/main/dist/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.0-SNAPSHOT.jar" "$@"
exec "$JAVACMD" "$LAF_OPTS" -jar "$JPASS_HOME/jpass-1.0.0-RELEASE.jar" "$@"
2 changes: 1 addition & 1 deletion src/main/dist/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.0-SNAPSHOT.jar" "$@"
exec "$JAVACMD" -jar "$JPASS_PATH/jpass-1.0.0-RELEASE.jar" "$@"
4 changes: 2 additions & 2 deletions src/main/dist/readme.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# JPass - Password Manager 1.0.0-SNAPSHOT
# JPass - Password Manager 1.0.0-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.0-SNAPSHOT.jar [password_file]
java -jar jpass-1.0.0-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 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 @@ -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.0-SNAPSHOT";
public static final String PROGRAM_VERSION = "1.0.0-RELEASE";

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

0 comments on commit c2e80f0

Please sign in to comment.