Updated version

This commit is contained in:
Robinson 2023-07-16 14:58:01 +02:00
parent 94048cfe8f
commit d787045149
No known key found for this signature in database
GPG Key ID: 8E7DB78588BD6F5C
5 changed files with 6 additions and 6 deletions

View File

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

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.4"
const val version = "6.5"
// set as project.ext
const val name = "Network"

View File

@ -117,7 +117,7 @@ open class Client<CONNECTION : Connection>(
/**
* Gets the version number.
*/
const val version = "6.4"
const val version = "6.5"
/**
* Ensures that the client (using the specified configuration) is NO LONGER running.

View File

@ -49,7 +49,7 @@ class ServerConfiguration : dorkbox.network.Configuration() {
/**
* Gets the version number.
*/
const val version = "6.4"
const val version = "6.5"
}
/**

View File

@ -120,7 +120,7 @@ open class Server<CONNECTION : Connection>(
/**
* Gets the version number.
*/
const val version = "6.4"
const val version = "6.5"
/**
* Ensures that an endpoint (using the specified configuration) is NO LONGER running.