updated version

master
Robinson 2021-04-09 20:23:38 +02:00
parent ca8d433dcd
commit 89b37710dd
3 changed files with 4 additions and 4 deletions

View File

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

View File

@ -37,7 +37,7 @@ object Extras {
// set for the project
const val description = "Lightweight, extremely fast, and zero-gc message/event bus for Java 8+"
const val group = "com.dorkbox"
const val version = "2.3"
const val version = "2.4"
// set as project.ext
const val name = "MessageBus"

View File

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