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> <dependency>
<groupId>com.dorkbox</groupId> <groupId>com.dorkbox</groupId>
<artifactId>Network</artifactId> <artifactId>Network</artifactId>
<version>3.0</version> <version>4.0</version>
</dependency> </dependency>
</dependencies> </dependencies>
``` ```
@ -103,7 +103,7 @@ Gradle Info
```` ````
dependencies { 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 // set for the project
const val description = "Encrypted, high-performance, and event-driven/reactive network stack for Java 11+" const val description = "Encrypted, high-performance, and event-driven/reactive network stack for Java 11+"
const val group = "com.dorkbox" const val group = "com.dorkbox"
const val version = "3.0" const val version = "4.0"
// set as project.ext // set as project.ext
const val name = "Network" const val name = "Network"

View File

@ -58,7 +58,7 @@ class Broadcast {
*/ */
public static public static
String getVersion() { 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 public static
String getVersion() { String getVersion() {
return "3.0"; return "4.0";
} }
private final String localChannelName; private final String localChannelName;

View File

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