Updated dependencies.

This commit is contained in:
Robinson 2021-10-01 11:34:45 +02:00
parent c77ed91c82
commit f68418c27c
No known key found for this signature in database
GPG Key ID: 8E7DB78588BD6F5C
5 changed files with 6 additions and 6 deletions

View File

@ -93,7 +93,7 @@ Maven Info
<dependency>
<groupId>com.dorkbox</groupId>
<artifactId>Network</artifactId>
<version>5.6</version>
<version>5.7</version>
</dependency>
</dependencies>
```
@ -103,7 +103,7 @@ Gradle Info
```
dependencies {
...
implementation("com.dorkbox:Network:5.6")
implementation("com.dorkbox:Network:5.7")
}
```

View File

@ -37,7 +37,7 @@ object Extras {
// set for the project
const val description = "Encrypted, high-performance, and event-driven/reactive network stack for Java 8+"
const val group = "com.dorkbox"
const val version = "5.6"
const val version = "5.7"
// set as project.ext
const val name = "Network"

View File

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

View File

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

View File

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