Updated library + version

This commit is contained in:
Robinson 2022-06-24 23:04:37 +02:00
parent 0550661067
commit 20c528b563
No known key found for this signature in database
GPG Key ID: 8E7DB78588BD6F5C
5 changed files with 7 additions and 7 deletions

View File

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

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 = "5.22"
const val version = "5.22.1"
// set as project.ext
const val name = "Network"
@ -148,7 +148,7 @@ dependencies {
api("com.dorkbox:Collections:1.1")
api("com.dorkbox:MinLog:2.4")
api("com.dorkbox:NetworkDNS:2.6")
api("com.dorkbox:NetworkUtils:2.17")
api("com.dorkbox:NetworkUtils:2.18")
api("com.dorkbox:ObjectPool:3.5")
api("com.dorkbox:OS:1.0")
api("com.dorkbox:Serializers:2.7")

View File

@ -130,7 +130,7 @@ open class Client<CONNECTION : Connection>(
/**
* Gets the version number.
*/
const val version = "5.22"
const val version = "5.22.1"
/**
* Checks to see if a client (using the specified configuration) is running.

View File

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

View File

@ -123,7 +123,7 @@ open class Server<CONNECTION : Connection>(
/**
* Gets the version number.
*/
const val version = "5.22"
const val version = "5.22.1"
/**
* Checks to see if a server (using the specified configuration) is running.