Updated version

This commit is contained in:
nathan 2016-05-31 02:21:42 +02:00
parent 006fa1822a
commit f8747c1921
3 changed files with 4 additions and 2 deletions

View File

@ -2,6 +2,7 @@
https://github.com/dorkbox
Copyright 2015, dorkbox, llc
Copyright 2012, Benjamin Diedrichsen
Lightweight, extremely fast, zero-gc message/event bus
- ASM - BSD 3-clause License
@ -20,6 +21,7 @@
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
Optimized and Fast ThreadLocals
- Kryo - BSD 3-clause License

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.14</version>
<version>1.15</version>
</dependency>
```

View File

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