Skip to content
This repository has been archived by the owner on Mar 18, 2024. It is now read-only.

Commit

Permalink
Version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
mordechaim committed Sep 22, 2020
1 parent 31a4c58 commit f636e5f
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 7 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
* **1.5.4**
* Fix archive not properly resolving UNIX paths. [#109](https://github.com/update4j/update4j/issues/109)
* **1.5.3**
* Clamp update handler `frac` values between 0 and 1. [#106](https://github.com/update4j/update4j/issues/106)
* Bug fix in `DefaultBootstrap` causing command-line args not to be passed. [#107](https://github.com/update4j/update4j/issues/107)
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# [![update4j-logo][3]][3]

[![Build Status](https://travis-ci.org/update4j/update4j.svg?branch=master)](https://travis-ci.org/update4j/update4j) [![Apache License](https://img.shields.io/badge/license-Apache%20License%202.0-blue.svg)](http://www.apache.org/licenses/LICENSE-2.0) ![Java-9+](https://img.shields.io/badge/java-9%2B-orange.svg) [![Maven Release](https://img.shields.io/badge/maven%20central-v1.5.3-yellow.svg)](https://search.maven.org/search?q=org.update4j) [![Gitter](https://badges.gitter.im/update4j/update4j.svg)](https://gitter.im/update4j/update4j?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge)
[![Build Status](https://travis-ci.org/update4j/update4j.svg?branch=master)](https://travis-ci.org/update4j/update4j) [![Apache License](https://img.shields.io/badge/license-Apache%20License%202.0-blue.svg)](http://www.apache.org/licenses/LICENSE-2.0) ![Java-9+](https://img.shields.io/badge/java-9%2B-orange.svg) [![Maven Release](https://img.shields.io/badge/maven%20central-v1.5.4-yellow.svg)](https://search.maven.org/search?q=org.update4j) [![Gitter](https://badges.gitter.im/update4j/update4j.svg)](https://gitter.im/update4j/update4j?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge)


**Read the [documentation](https://github.com/update4j/update4j/wiki/Documentation), explore the [JavaDoc](http://docs.update4j.org/javadoc/update4j/index.html), or [see it in action](https://github.com/update4j/update4j/wiki/Demo-Application)**
Expand Down Expand Up @@ -32,13 +32,13 @@ In update4j _you_ have ultimate control of every process, from startup - update

## Installation & Usage

You can [download](https://repo1.maven.org/maven2/org/update4j/update4j/1.5.3/update4j-1.5.3.jar) or install using Maven:
You can [download](https://repo1.maven.org/maven2/org/update4j/update4j/1.5.4/update4j-1.5.4.jar) or install using Maven:

```xml
<dependency>
<groupId>org.update4j</groupId>
<artifactId>update4j</artifactId>
<version>1.5.3</version>
<version>1.5.4</version>
</dependency>
```

Expand All @@ -47,15 +47,15 @@ You can use it as a regular dependency, or you may run it as a runnable JAR file
To run it in the modulepath, use either of:

```shell
$ java -p update4j-1.5.3.jar -m org.update4j
$ java -p update4j-1.5.4.jar -m org.update4j
$ java -p . -m org.update4j

```

To run it in the classpath, use either of:

```shell
$ java -jar update4j-1.5.3.jar
$ java -jar update4j-1.5.4.jar
$ java -cp * org.update4j.Bootstrap
```

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<groupId>org.update4j</groupId>
<artifactId>update4j</artifactId>
<version>1.5.3</version>
<version>1.5.4</version>
<name>update4j</name>
<description>Update and launch Java 9+ Applications</description>
<url>https://github.com/update4j/update4j</url>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/update4j/Bootstrap.java
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ private Bootstrap() {
/**
* The version of the current build of the framework.
*/
public static final String VERSION = "1.5.3";
public static final String VERSION = "1.5.4";

/**
* The main method to start the bootstrap application in Delegate Mode from
Expand Down

0 comments on commit f636e5f

Please sign in to comment.