Compare commits

..

No commits in common. "600c7eb3b7aeb66ea158cb846c8df597098e296f" and "4e1d4c9d2501e02e371338e50aa442f7a6d7fca0" have entirely different histories.

4 changed files with 12 additions and 5 deletions

View File

@ -250,6 +250,13 @@
Lightweight Java Game Library Project Lightweight Java Game Library Project
Riven Riven
- Modified hex conversion utility methods -
[The Apache Software License, Version 2.0]
https://git.dorkbox.com/dorkbox/Utilities
https://netty.io
Copyright 2014
The Netty Project
- Retrofit - A type-safe HTTP client for Android and Java - Retrofit - A type-safe HTTP client for Android and Java
[The Apache Software License, Version 2.0] [The Apache Software License, Version 2.0]
https://github.com/square/retrofit https://github.com/square/retrofit

View File

@ -141,7 +141,7 @@ Maven Info
<dependency> <dependency>
<groupId>com.dorkbox</groupId> <groupId>com.dorkbox</groupId>
<artifactId>MessageBus</artifactId> <artifactId>MessageBus</artifactId>
<version>2.7</version> <version>2.6</version>
</dependency> </dependency>
</dependencies> </dependencies>
``` ```
@ -151,7 +151,7 @@ Gradle Info
``` ```
dependencies { dependencies {
... ...
implementation("com.dorkbox:MessageBus:2.7") implementation("com.dorkbox:MessageBus:2.6")
} }
``` ```

View File

@ -37,7 +37,7 @@ object Extras {
// set for the project // set for the project
const val description = "Lightweight, extremely fast, and zero-gc message/event bus for Java 8+" const val description = "Lightweight, extremely fast, and zero-gc message/event bus for Java 8+"
const val group = "com.dorkbox" const val group = "com.dorkbox"
const val version = "2.7" const val version = "2.6"
// set as project.ext // set as project.ext
const val name = "MessageBus" const val name = "MessageBus"
@ -92,7 +92,7 @@ dependencies {
api("com.dorkbox:ClassUtils:1.3") api("com.dorkbox:ClassUtils:1.3")
api("com.dorkbox:Collections:2.4") api("com.dorkbox:Collections:2.4")
api("com.dorkbox:Updates:1.1") api("com.dorkbox:Updates:1.1")
api("com.dorkbox:Utilities:1.46") api("com.dorkbox:Utilities:1.45")
api("com.lmax:disruptor:3.4.4") api("com.lmax:disruptor:3.4.4")
api("com.conversantmedia:disruptor:1.2.21") api("com.conversantmedia:disruptor:1.2.21")

View File

@ -99,7 +99,7 @@ class MessageBus {
*/ */
public static public static
String getVersion() { String getVersion() {
return "2.7"; return "2.6";
} }
/** /**