Version 6.15

master
Robinson 2023-11-16 12:08:30 +01:00
parent f0493beca1
commit 88bac6ef84
No known key found for this signature in database
GPG Key ID: 8E7DB78588BD6F5C
3 changed files with 4 additions and 4 deletions

View File

@ -72,7 +72,7 @@ Maven Info
<dependency>
<groupId>com.dorkbox</groupId>
<artifactId>Network</artifactId>
<version>6.14</version>
<version>6.15</version>
</dependency>
</dependencies>
```
@ -82,7 +82,7 @@ Gradle Info
```
dependencies {
...
implementation("com.dorkbox:Network:6.14")
implementation("com.dorkbox:Network:6.15")
}
```

View File

@ -37,7 +37,7 @@ object Extras {
// set for the project
const val description = "High-performance, event-driven/reactive network stack for Java 11+"
const val group = "com.dorkbox"
const val version = "6.14"
const val version = "6.15"
// set as project.ext
const val name = "Network"

View File

@ -234,7 +234,7 @@ abstract class Configuration protected constructor() {
/**
* Gets the version number.
*/
const val version = "6.14"
const val version = "6.15"
internal val NOP_LOGGER = NOPLogger.NOP_LOGGER