Updated version

This commit is contained in:
nathan 2016-04-03 21:03:27 +02:00
parent 11891f0525
commit 39baddfbd3
3 changed files with 8 additions and 2 deletions

View File

@ -16,6 +16,12 @@
A High Performance Inter-Thread Messaging Library
- FastThreadLocal - BSD 3-clause License
https://github.com/LWJGL/lwjgl3/blob/5819c9123222f6ce51f208e022cb907091dd8023/modules/core/src/main/java/org/lwjgl/system/FastThreadLocal.java
Copyright 2012-2014, Lightweight Java Game Library Project
Riven
- Kryo - BSD 3-clause License
https://github.com/EsotericSoftware/kryo
Copyright 2008, Nathan Sweet

View File

@ -132,7 +132,7 @@ The MessageBus is available from the Maven Central Repository using the followin
<dependency>
<groupId>com.dorkbox</groupId>
<artifactId>MessageBus</artifactId>
<version>1.13</version>
<version>1.14</version>
</dependency>
```

View File

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