Updated version

This commit is contained in:
nathan 2016-04-03 21:03:27 +02:00
parent 76599e370e
commit dfbd95bcce
6 changed files with 11 additions and 5 deletions

View File

@ -32,6 +32,12 @@
Copyright 2010, dorkbox, llc
- FastThreadLocal - BSD 3-clause License
https://github.com/LWJGL/lwjgl3/blob/5819c9123222f6ce51f208e022cb907091dd8023/modules/core/src/main/java/org/lwjgl/system/FastThreadLocal.java
Copyright 2012-2014, Lightweight Java Game Library Project
Riven
- Javassist - Apache 2.0 License
http://www.csg.is.titech.ac.jp/~chiba/javassist
Copyright 1999, Shigeru Chiba

View File

@ -90,7 +90,7 @@ This project is **kept in sync** with the utilities library, so "jar hell" is no
<dependency>
<groupId>com.dorkbox</groupId>
<artifactId>Network</artifactId>
<version>1.16</version>
<version>1.17</version>
</dependency>
```

View File

@ -48,7 +48,7 @@ class Broadcast {
*/
public static
String getVersion() {
return "1.16";
return "1.17";
}
/**

View File

@ -66,7 +66,7 @@ class Client<C extends Connection> extends EndPointClient<C> implements Connecti
*/
public static
String getVersion() {
return "1.16";
return "1.17";
}
/**

View File

@ -114,7 +114,7 @@ class DnsClient {
*/
public static
String getVersion() {
return "1.16";
return "1.17";
}
/**

View File

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