Skip to content

Commit

Permalink
Bumped version to 0.1.15-RELEASE
Browse files Browse the repository at this point in the history
  • Loading branch information
gaborbata committed Oct 9, 2017
1 parent 399c969 commit 6dfbcde
Show file tree
Hide file tree
Showing 9 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ Features:

Usage
-----
Java 6 or later is recommended to run JPass. Most platforms have a mechanism to execute `.jar` files (e.g. double click the `jpass-0.1.15-SNAPSHOT.jar`).
Java 6 or later is recommended to run JPass. Most platforms have a mechanism to execute `.jar` files (e.g. double click the `jpass-0.1.15-RELEASE.jar`).
You can also run the application from the command line by typing (the password file is optional):

java -jar jpass-0.1.15-SNAPSHOT.jar [password_file]
java -jar jpass-0.1.15-RELEASE.jar [password_file]

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

jar {
baseName = 'jpass'
version = '0.1.15-SNAPSHOT'
version = '0.1.15-RELEASE'
manifest {
attributes('Main-Class': 'jpass.JPass')
}
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 := "0.1.15-SNAPSHOT"
version := "0.1.15-RELEASE"

libraryDependencies += "junit" % "junit" % "4.11" % "test"

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>0.1.15-SNAPSHOT</version>
<version>0.1.15-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
@@ -1,2 +1,2 @@
@echo off
start /B javaw -jar jpass-0.1.15-SNAPSHOT.jar %*
start /B javaw -jar jpass-0.1.15-RELEASE.jar %*
2 changes: 1 addition & 1 deletion src/main/dist/jpass.sh
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
#!/bin/sh
java -jar jpass-0.1.15-SNAPSHOT.jar "$@"
java -jar jpass-0.1.15-RELEASE.jar "$@"
6 changes: 3 additions & 3 deletions src/main/dist/readme.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# JPass - Password Manager 0.1.15-SNAPSHOT
# JPass - Password Manager 0.1.15-RELEASE

Overview
--------
Expand All @@ -17,11 +17,11 @@ Features:
Usage
-----
Java 6 or later is recommended to run JPass. Most platforms have a mechanism
to execute `.jar` files (e.g. double click the `jpass-0.1.15-SNAPSHOT.jar`).
to execute `.jar` files (e.g. double click the `jpass-0.1.15-RELEASE.jar`).
You can also run the application from the command line by typing (the password
file is optional):

java -jar jpass-0.1.15-SNAPSHOT.jar [password_file]
java -jar jpass-0.1.15-RELEASE.jar [password_file]

Configuration
-------------
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 volatile JPassFrame INSTANCE;

public static final String PROGRAM_NAME = "JPass Password Manager";
public static final String PROGRAM_VERSION = "0.1.15-SNAPSHOT";
public static final String PROGRAM_VERSION = "0.1.15-RELEASE";

private final JPopupMenu popup;
private final JPanel topContainerPanel;
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/resources/license.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
JPass Password Manager
Copyright (c) 2009-2017 Gábor Bata
Copyright (c) 2009-2017 G�bor Bata
All rights reserved.

Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
Expand Down

0 comments on commit 6dfbcde

Please sign in to comment.