version 2.7

master Version_2.7
Robinson 2023-08-21 01:50:57 +02:00
parent 5a9a104d39
commit 600c7eb3b7
No known key found for this signature in database
GPG Key ID: 8E7DB78588BD6F5C
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.6</version>
<version>2.7</version>
</dependency>
</dependencies>
```
@ -151,7 +151,7 @@ Gradle Info
```
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
const val description = "Lightweight, extremely fast, and zero-gc message/event bus for Java 8+"
const val group = "com.dorkbox"
const val version = "2.6"
const val version = "2.7"
// set as project.ext
const val name = "MessageBus"

View File

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