Updated version from 2.11 to 2.12

This commit is contained in:
nathan 2018-12-19 00:07:28 +01:00
parent 699789b465
commit 07cb768fc2
5 changed files with 5 additions and 5 deletions

View File

@ -68,7 +68,7 @@ apply plugin: 'java-library'
project.description = 'Encrypted, high-performance, and event-driven/reactive network stack for Java 6+'
project.group = 'com.dorkbox'
project.version = '2.11'
project.version = '2.12'
project.ext.name = 'Network'
project.ext.url = 'https://git.dorkbox.com/dorkbox/Network'

View File

@ -57,7 +57,7 @@ class Broadcast {
*/
public static
String getVersion() {
return "2.11";
return "2.12";
}
/**

View File

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

View File

@ -122,7 +122,7 @@ class DnsClient extends Shutdownable {
*/
public static
String getVersion() {
return "2.11";
return "2.12";
}
/**

View File

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