version 6.12

This commit is contained in:
Robinson 2023-09-28 01:55:14 +02:00
parent 0825274bd0
commit c69a33f1a9
No known key found for this signature in database
GPG Key ID: 8E7DB78588BD6F5C
3 changed files with 5 additions and 5 deletions

View File

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

View File

@ -26,7 +26,7 @@ plugins {
id("com.dorkbox.GradleUtils") version "3.18"
id("com.dorkbox.Licensing") version "2.28"
id("com.dorkbox.VersionUpdate") version "2.8"
id("com.dorkbox.GradlePublish") version "1.19"
id("com.dorkbox.GradlePublish") version "1.20"
id("com.github.johnrengelman.shadow") version "8.1.1"
@ -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.11"
const val version = "6.12"
// set as project.ext
const val name = "Network"

View File

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