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 Aug 29, 2018
1 parent 5ee6eda commit e3d045c
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 20 deletions.
28 changes: 13 additions & 15 deletions README.md
@@ -1,13 +1,10 @@
# update4j <sup><sup>beta</sup></sup> &nbsp; &nbsp; &nbsp; [![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.2.0-yellow.svg)](https://search.maven.org/search?q=org.update4j)
# update4j <sup><sup>beta</sup></sup> &nbsp; &nbsp; &nbsp; [![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.2.1-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)


**Documentation available at the [wiki](https://github.com/update4j/update4j/wiki/Documentation), or explore the [JavaDoc](http://docs.update4j.org/javadoc/update4j/overview-summary.html)**

Auto-updater and launcher for your distributed applications. Built with Java 9's module system in mind.





## Screenshots

### Headless
Expand Down Expand Up @@ -42,33 +39,34 @@ Install using Maven:
<dependency>
<groupId>org.update4j</groupId>
<artifactId>update4j</artifactId>
<version>1.2.0</version>
<version>1.2.1</version>
</dependency>
```

You can use it as a regular dependency, or you may run it as a runnable JAR file. In the latter case you must also provide a [`Delegate`](https://github.com/update4j/update4j/wiki/Documentation#dealing-with-providers) in the classpath or modulepath.
You can use it as a regular dependency, or you may run it as a runnable JAR file.

To run it as a runnable JAR as a module:
To run it in the modulepath, use either of:

```shell
$ java --module-path . --module org.update4j
$ java -p update4j-1.2.1.jar -m org.update4j
$ java -p . -m org.update4j

```

Or in shorthand:
To run it in the classpath, use either of:

```shell
$ java -p . -m org.update4j
$ java -jar update4j-1.2.1.jar
$ java -cp * org.update4j.Bootstrap
```

You can also start it the conventional way on the classpath using the `-cp` or `-jar` flags.

For more information refer to [Starting the Application](https://github.com/update4j/update4j/wiki/Documentation#starting-the-application) in the wiki.


## Change Log

* *Upcoming Release*
* Added `DefaultBootstrap` and `DefaultLauncher`.
* **1.2.1**
* Added `DefaultBootstrap` with a straightforward CLI, and `DefaultLauncher`.
* Added `Configuration.sync()` methods.
* Additional file validation on update and renaming `UpdateManager.verifyingFileSignature()` to `validatingFile()` to include all of them.
* To avoid version inconsistencies, all downloads are now atomic; if one download fails all previous are rolled back. Updated `UpdateHandler.doneDownloadFile()` to add awareness of this.
Expand Down
6 changes: 3 additions & 3 deletions pom.xml
Expand Up @@ -5,7 +5,7 @@

<groupId>org.update4j</groupId>
<artifactId>update4j</artifactId>
<version>1.2.0</version>
<version>1.2.1</version>
<name>update4j</name>
<description>Updates and launches Java 9+ Applications</description>
<url>https://github.com/update4j/update4j</url>
Expand Down Expand Up @@ -82,7 +82,7 @@
</execution>
</executions>
</plugin>
<!-- <plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.0.1</version>
Expand Down Expand Up @@ -113,7 +113,7 @@
</goals>
</execution>
</executions>
</plugin> -->
</plugin>
</plugins>
</build>
</project>
2 changes: 1 addition & 1 deletion src/main/java/org/update4j/Bootstrap.java
Expand Up @@ -37,7 +37,7 @@ public class Bootstrap {
/**
* The version of the current build of the framework.
*/
public static final String VERSION = "1.2.0";
public static final String VERSION = "1.2.1";

/**
* The main method to start the bootstrap application in Delegate Mode from
Expand Down
3 changes: 2 additions & 1 deletion src/main/java/org/update4j/service/DefaultBootstrap.java
Expand Up @@ -254,7 +254,8 @@ private static String getLogo() {

return

"\t _ _ ___ _ \n"
"\n"
+ "\t _ _ ___ _ \n"
+ "\t | | | | / (_)\n"
+ "\t _ _ _ __ __| | __ _| |_ ___ / /| |_ \n"
+ "\t| | | | '_ \\ / _` |/ _` | __/ _ \\/ /_| | |\n"
Expand Down

0 comments on commit e3d045c

Please sign in to comment.