Compare commits

...

2 Commits

Author SHA1 Message Date
Robinson
600c7eb3b7
version 2.7 2023-08-21 01:50:57 +02:00
Robinson
5a9a104d39
updated deps 2023-08-21 01:49:46 +02:00
4 changed files with 5 additions and 12 deletions

View File

@ -250,13 +250,6 @@
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.6</version> <version>2.7</version>
</dependency> </dependency>
</dependencies> </dependencies>
``` ```
@ -151,7 +151,7 @@ Gradle Info
``` ```
dependencies { dependencies {
... ...
implementation("com.dorkbox:MessageBus:2.6") implementation("com.dorkbox:MessageBus:2.7")
} }
``` ```

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.6" const val version = "2.7"
// 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.45") api("com.dorkbox:Utilities:1.46")
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.6"; return "2.7";
} }
/** /**