Updated version/readme

This commit is contained in:
nathan 2017-02-01 00:51:26 +01:00
parent f8747c1921
commit d5a104767e
3 changed files with 8 additions and 5 deletions

View File

@ -2,7 +2,7 @@
https://github.com/dorkbox
Copyright 2015, dorkbox, llc
Copyright 2012, Benjamin Diedrichsen
Lightweight, extremely fast, zero-gc message/event bus
Lightweight, extremely fast, and zero-gc message/event bus for Java 6+
- ASM - BSD 3-clause License

View File

@ -126,13 +126,16 @@ Message publication:
<h2>Installation</h2>
The MessageBus is available from the Maven Central Repository using the following coordinates:
<h4>We now release to maven!</h4>
This project **includes** some utility classes, which are an extremely small subset of a much larger library; including only what is *necessary* for this particular project to function. Additionally this project is **kept in sync** with the utilities library, so "jar hell" is not an issue, and the latest release will always include the same utility files as all other projects in the dorkbox repository at that time.
Please note that the utility classes have their source code included in the release, and eventually the entire utility library will be provided as a dorkbox repository.
```
<dependency>
<groupId>com.dorkbox</groupId>
<artifactId>MessageBus</artifactId>
<version>1.15</version>
<version>1.16</version>
</dependency>
```

View File

@ -107,7 +107,7 @@ class MessageBus implements IMessageBus {
*/
public static
String getVersion() {
return "1.15";
return "1.16";
}
private final ErrorHandler errorHandler;