Updated version

This commit is contained in:
Robinson 2022-08-03 01:52:50 +02:00
parent 6d519227df
commit 401f29a9a2
No known key found for this signature in database
GPG Key ID: 8E7DB78588BD6F5C
5 changed files with 6 additions and 6 deletions

View File

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

View File

@ -37,7 +37,7 @@ object Extras {
// set for the project // set for the project
const val description = "High-performance, event-driven/reactive network stack for Java 11+" const val description = "High-performance, event-driven/reactive network stack for Java 11+"
const val group = "com.dorkbox" const val group = "com.dorkbox"
const val version = "5.31.1" const val version = "5.32"
// set as project.ext // set as project.ext
const val name = "Network" const val name = "Network"

View File

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

View File

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

View File

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