diff --git a/README.md b/README.md
index ce9bad81..11cf9462 100644
--- a/README.md
+++ b/README.md
@@ -24,18 +24,12 @@ 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.26-RELEASE.jar [password_file]
+ java -jar jpass-0.1.27-RELEASE.jar [password_file]
Download
--------
You can find the latest distribution packages under the [releases](https://github.com/gaborbata/jpass/releases) link.
-On Windows, you can install JPass using [scoop](https://scoop.sh/).
-
-```
-scoop install jpass.json
-```
-
How to compile
--------------
* Maven: `mvn clean package`
diff --git a/build.gradle b/build.gradle
index 86b726b8..32cdc73a 100644
--- a/build.gradle
+++ b/build.gradle
@@ -5,7 +5,7 @@ compileJava.options.encoding = 'UTF-8'
sourceCompatibility = 1.8
targetCompatibility = 1.8
-version = '0.1.26-RELEASE'
+version = '0.1.27-RELEASE'
repositories {
mavenCentral()
diff --git a/build.sbt b/build.sbt
index 821a47c8..8ca77672 100644
--- a/build.sbt
+++ b/build.sbt
@@ -2,7 +2,7 @@ organization:= "jpass.id"
name := "JPass"
-version := "0.1.26-RELEASE"
+version := "0.1.27-RELEASE"
libraryDependencies += "com.fasterxml.jackson.dataformat" % "jackson-dataformat-xml" % "2.12.4"
diff --git a/jpass.json b/jpass.json
deleted file mode 100644
index 2a3b4bbb..00000000
--- a/jpass.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "version": "0.1.26",
- "description": "Password manager application with strong encryption (AES-256)",
- "homepage": "https://github.com/gaborbata/jpass",
- "license": "MIT",
- "architecture": {
- "64bit": {
- "url": "https://github.com/gaborbata/jpass/releases/download/v0.1.26/jpass-0.1.26-windows-x64.zip",
- "hash": "df5cd27c0163e830d7d94793825cb3ff907ecf1ef630fd716a7f8fe6fc979c2e"
- }
- },
- "bin": "jpass.exe",
- "shortcuts": [
- [
- "jpass.exe",
- "JPass"
- ]
- ],
- "checkver": {
- "github": "https://github.com/gaborbata/jpass"
- },
- "autoupdate": {
- "architecture": {
- "64bit": {
- "url": "https://github.com/gaborbata/jpass/releases/download/v$version/jpass-$version-windows-x64.zip"
- }
- },
- "hash": {
- "url": "$baseurl/checksums.txt"
- }
- }
-}
diff --git a/pom.xml b/pom.xml
index 35fe5eb7..2c3ae37d 100644
--- a/pom.xml
+++ b/pom.xml
@@ -4,7 +4,7 @@
jpass
jpass
jar
- 0.1.26-RELEASE
+ 0.1.27-RELEASE
JPass
UTF-8
diff --git a/src/main/dist/jpass.bat b/src/main/dist/jpass.bat
index d7eac68b..229ea989 100644
--- a/src/main/dist/jpass.bat
+++ b/src/main/dist/jpass.bat
@@ -1,2 +1,2 @@
@echo off
-start /B javaw -jar jpass-0.1.26-RELEASE.jar %*
+start /B javaw -jar jpass-0.1.27-RELEASE.jar %*
diff --git a/src/main/dist/jpass.command b/src/main/dist/jpass.command
index c617f6de..51575100 100644
--- a/src/main/dist/jpass.command
+++ b/src/main/dist/jpass.command
@@ -1,2 +1,2 @@
#!/bin/sh
-java -Xdock:icon=jpass.png -Dapple.laf.useScreenMenuBar=true -jar jpass-0.1.26-RELEASE.jar "$@"
+java -Xdock:icon=jpass.png -Dapple.laf.useScreenMenuBar=true -jar jpass-0.1.27-RELEASE.jar "$@"
diff --git a/src/main/dist/jpass.sh b/src/main/dist/jpass.sh
index 431dd4c5..681abcf8 100644
--- a/src/main/dist/jpass.sh
+++ b/src/main/dist/jpass.sh
@@ -1,2 +1,2 @@
#!/bin/sh
-java -jar jpass-0.1.26-RELEASE.jar "$@"
+java -jar jpass-0.1.27-RELEASE.jar "$@"
diff --git a/src/main/dist/readme.txt b/src/main/dist/readme.txt
index 4d16dbb0..0f67f5eb 100644
--- a/src/main/dist/readme.txt
+++ b/src/main/dist/readme.txt
@@ -1,4 +1,4 @@
-# JPass - Password Manager 0.1.26-RELEASE
+# JPass - Password Manager 0.1.27-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.26-RELEASE.jar [password_file]
+ java -jar jpass-0.1.27-RELEASE.jar [password_file]
Configuration
-------------
diff --git a/src/main/java/jpass/ui/JPassFrame.java b/src/main/java/jpass/ui/JPassFrame.java
index 7fdabcac..cd293a52 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.26-RELEASE";
+ public static final String PROGRAM_VERSION = "0.1.27-RELEASE";
private final JPopupMenu popup;
private final JPanel topContainerPanel;