diff --git a/CHANGELOG.md b/CHANGELOG.md
index aed0689..6ce3b1f 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,7 +1,7 @@
# Change Log
All notable changes to this project will be documented in this file.
-## [1.0.15-SNAPSHOT]
+## [1.0.15]
- `--lingering-update-screen` will keep the update screen active until the primary stage is shown. The default is false, whereas the old behavior was similar to setting it to true.
- Alternative classloader strategy (https://github.com/edvin/fxlauncher/pull/55)
diff --git a/README.md b/README.md
index d7d5ade..bcb35d6 100644
--- a/README.md
+++ b/README.md
@@ -143,8 +143,9 @@ already in the local cache. With the option ```--stopOnUpdateErrors``` this will
The error will be shown and the launcher will exit.
## Show what's new dialog.
-Starting from 1.0.15, you can have fxlauncher show a whats new dialog. This dialog will
-only be shown when fxlauncher has to download new files from the server. Fxlauncher will use a `webView` to show it. Specify `--whats-new=filename.html`
+
+Starting from 1.0.15, you can have FXLauncher show a whats new dialog. This dialog will
+only be shown when FXLauncher has to download new files from the server. The html content will be shown in a `WebView`. Specify `--whats-new=filename.html`
The file needs to be copied into the jar like so:
```xml
diff --git a/pom.xml b/pom.xml
index 00cb69a..b98dd5f 100644
--- a/pom.xml
+++ b/pom.xml
@@ -6,7 +6,7 @@
no.tornado
fxlauncher
- 1.0.15-SNAPSHOT
+ 1.0.15
jar
FX Launcher
Auto updating launcher for JavaFX Applications
@@ -119,7 +119,7 @@
sign-artifacts
- deploy
+ install
sign
diff --git a/src/main/java/fxlauncher/CreateManifest.java b/src/main/java/fxlauncher/CreateManifest.java
index 6fc974f..c7a85c4 100644
--- a/src/main/java/fxlauncher/CreateManifest.java
+++ b/src/main/java/fxlauncher/CreateManifest.java
@@ -97,7 +97,7 @@ public static void main(String[] args) throws IOException {
JAXB.marshal(manifest, appPath.resolve("app.xml").toFile());
}
- static FXManifest create(URI baseURI, String launchClass, Path appPath) throws IOException {
+ private static FXManifest create(URI baseURI, String launchClass, Path appPath) throws IOException {
FXManifest manifest = new FXManifest();
manifest.ts = System.currentTimeMillis();
manifest.uri = baseURI;