diff --git a/README.md b/README.md index 46ff2cce..740b1b0b 100644 --- a/README.md +++ b/README.md @@ -72,7 +72,7 @@ Maven Info com.dorkbox Network - 6.4 + 6.5 ``` @@ -82,7 +82,7 @@ Gradle Info ``` dependencies { ... - implementation("com.dorkbox:Network:6.4") + implementation("com.dorkbox:Network:6.5") } ``` diff --git a/build.gradle.kts b/build.gradle.kts index 8899b905..22521141 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -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" diff --git a/src/dorkbox/network/Client.kt b/src/dorkbox/network/Client.kt index b24c9d24..142a5ee9 100644 --- a/src/dorkbox/network/Client.kt +++ b/src/dorkbox/network/Client.kt @@ -117,7 +117,7 @@ open class Client( /** * 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. diff --git a/src/dorkbox/network/Configuration.kt b/src/dorkbox/network/Configuration.kt index f903514d..caf5113a 100644 --- a/src/dorkbox/network/Configuration.kt +++ b/src/dorkbox/network/Configuration.kt @@ -49,7 +49,7 @@ class ServerConfiguration : dorkbox.network.Configuration() { /** * Gets the version number. */ - const val version = "6.4" + const val version = "6.5" } /** diff --git a/src/dorkbox/network/Server.kt b/src/dorkbox/network/Server.kt index 75278227..dd43cb70 100644 --- a/src/dorkbox/network/Server.kt +++ b/src/dorkbox/network/Server.kt @@ -120,7 +120,7 @@ open class Server( /** * 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.