version 2.7

This commit is contained in:
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> <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"

View File

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