From 6d2ca63bc09f40c584362128caa2f8901a09f2a9 Mon Sep 17 00:00:00 2001 From: Robinson Date: Mon, 4 Apr 2022 23:24:42 +0200 Subject: [PATCH] Updated version --- README.md | 4 ++-- build.gradle.kts | 8 ++++---- src/dorkbox/network/Configuration.kt | 2 +- src/dorkbox/network/Server.kt | 2 +- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index b41694dc..d7e61ba3 100644 --- a/README.md +++ b/README.md @@ -95,7 +95,7 @@ Maven Info com.dorkbox Network - 5.9.2 + 5.10 ``` @@ -105,7 +105,7 @@ Gradle Info ``` dependencies { ... - implementation("com.dorkbox:Network:5.9.2") + implementation("com.dorkbox:Network:5.10") } ``` diff --git a/build.gradle.kts b/build.gradle.kts index 316b2d29..70acc2e3 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 8+" const val group = "com.dorkbox" - const val version = "5.9.2" + const val version = "5.10" // set as project.ext const val name = "Network" @@ -153,7 +153,7 @@ dependencies { api("com.dorkbox:Serializers:2.7") api("com.dorkbox:Storage:1.1") api("com.dorkbox:Updates:1.1") - api("com.dorkbox:Utilities:1.21") + api("com.dorkbox:Utilities:1.22") // https://github.com/real-logic/aeron @@ -170,10 +170,10 @@ dependencies { // implementation("net.jpountz.lz4:lz4:1.3.0") // this is NOT the same thing as LMAX disruptor. - // This is just a really fast queue (where LMAX is a fast queue + other things w/ a difficult DSL) + // This is just a slightly faster queue than LMAX. (LMAX is a fast queue + other things w/ a difficult DSL) // https://github.com/conversant/disruptor_benchmark // https://www.youtube.com/watch?v=jVMOgQgYzWU -// api("com.conversantmedia:disruptor:1.2.19") + //api("com.conversantmedia:disruptor:1.2.19") // https://github.com/jhalterman/typetools api("net.jodah:typetools:0.6.3") diff --git a/src/dorkbox/network/Configuration.kt b/src/dorkbox/network/Configuration.kt index 5595e1a3..402932b7 100644 --- a/src/dorkbox/network/Configuration.kt +++ b/src/dorkbox/network/Configuration.kt @@ -42,7 +42,7 @@ class ServerConfiguration : dorkbox.network.Configuration() { /** * Gets the version number. */ - const val version = "5.9.2" + const val version = "5.10" } /** diff --git a/src/dorkbox/network/Server.kt b/src/dorkbox/network/Server.kt index 79b6e7ed..ee326047 100644 --- a/src/dorkbox/network/Server.kt +++ b/src/dorkbox/network/Server.kt @@ -65,7 +65,7 @@ open class Server( /** * Gets the version number. */ - const val version = "5.9.2" + const val version = "5.10" /** * Checks to see if a server (using the specified configuration) is running.