Updated version from 3.0 to 4.0

This commit is contained in:
nathan 2019-06-14 22:02:06 +02:00
parent 0ed40edfb3
commit 786b00932e
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>3.0</version>
<version>4.0</version>
</dependency>
</dependencies>
```
@ -103,7 +103,7 @@ Gradle Info
````
dependencies {
...
compile 'com.dorkbox:Network:3.0'
compile 'com.dorkbox:Network:4.0'
}
````

View File

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

View File

@ -58,7 +58,7 @@ class Broadcast {
*/
public static
String getVersion() {
return "3.0";
return "4.0";
}
/**

View File

@ -64,7 +64,7 @@ class Client<C extends Connection> extends EndPointClient implements Connection
*/
public static
String getVersion() {
return "3.0";
return "4.0";
}
private final String localChannelName;

View File

@ -76,7 +76,7 @@ class Server<C extends Connection> extends EndPointServer {
*/
public static
String getVersion() {
return "3.0";
return "4.0";
}
/**