updated version

This commit is contained in:
Robinson 2021-04-30 22:42:37 +02:00
parent ef4b76d303
commit 5196fa2d66
5 changed files with 11 additions and 11 deletions

View File

@ -30,7 +30,7 @@ These are the main features:
- Note: There is a maximum packet size for UDP, 508 bytes *to guarantee it's unfragmented*
- This is for cross-platform use, specifically - linux 32/64, mac 64, and windows 32/64. Java 11+
- This is for cross-platform use, specifically - linux 32/64, mac 64, and windows 32/64. Java 1.8+
``` java
public static
@ -87,25 +87,25 @@ client.send()
Maven Info
---------
````
```
<dependencies>
...
<dependency>
<groupId>com.dorkbox</groupId>
<artifactId>Network</artifactId>
<version>5.0</version>
<version>5.2</version>
</dependency>
</dependencies>
````
```
Gradle Info
---------
````
```
dependencies {
...
implementation("com.dorkbox:Network:5.0")
implementation("com.dorkbox:Network:5.2")
}
````
```
License
---------

View File

@ -38,7 +38,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.1"
const val version = "5.2"
// set as project.ext
const val name = "Network"

View File

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

View File

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

View File

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