Updated version

This commit is contained in:
Robinson 2022-04-04 23:24:42 +02:00
parent 8ea95d9f17
commit 6d2ca63bc0
No known key found for this signature in database
GPG Key ID: 8E7DB78588BD6F5C
4 changed files with 8 additions and 8 deletions

View File

@ -95,7 +95,7 @@ Maven Info
<dependency>
<groupId>com.dorkbox</groupId>
<artifactId>Network</artifactId>
<version>5.9.2</version>
<version>5.10</version>
</dependency>
</dependencies>
```
@ -105,7 +105,7 @@ Gradle Info
```
dependencies {
...
implementation("com.dorkbox:Network:5.9.2")
implementation("com.dorkbox:Network:5.10")
}
```

View File

@ -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")

View File

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

View File

@ -65,7 +65,7 @@ open class Server<CONNECTION : Connection>(
/**
* 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.