Updated version/readme

This commit is contained in:
nathan 2017-02-01 00:53:22 +01:00
parent 598b675754
commit 782ca1a8e3
6 changed files with 10 additions and 11 deletions

View File

@ -1,7 +1,7 @@
- Dorkbox Network - Apache 2.0 License
https://github.com/dorkbox
Copyright 2010, dorkbox, llc
Encrypted, high-performance, event-driven/reactive network stack for Java 6+
Encrypted, high-performance, and event-driven/reactive network stack for Java 6+
- Barchart UDT/UDTv4 - BSD 3-clause License
@ -26,7 +26,7 @@
- Dorkbox ObjectPool - Apache 2.0 License
https://github.com/dorkbox
Copyright 2014, dorkbox, llc
Fast and compatible, blocking/non-blocking/soft-reference object pool for Java 6+
Fast, lightweight, and compatible blocking/non-blocking/soft-reference object pool for Java 6+
- Dorkbox Utils - Apache 2.0 License

View File

@ -83,20 +83,19 @@ client.send()
<h4>(We now release to maven!</h4>
There is a hard dependency in the POM file for the utilities library, which is an extremely small subset of a much larger library; including only what is *necessary* for this particular project to function.
This project is **kept in sync** with the utilities library, so "jar hell" is not an issue. Please note that the util library (in it's entirety) is not added since there are **many** dependencies that are not *necessary* for this project. No reason to require a massive amount of dependencies for one or two classes/methods.
This project **includes** some utility classes, which are an extremely small subset of a much larger library; including only what is *necessary* for this particular project to function. Additionally this project is **kept in sync** with the utilities library, so "jar hell" is not an issue, and the latest release will always include the same utility files as all other projects in the dorkbox repository at that time.
Please note that the utility classes have their source code included in the release, and eventually the entire utility library will be provided as a dorkbox repository.
```
<dependency>
<groupId>com.dorkbox</groupId>
<artifactId>Network</artifactId>
<version>1.20</version>
<version>1.21</version>
</dependency>
```
Or if you don't want to use Maven, you can access the files directly here:
https://oss.sonatype.org/content/repositories/releases/com/dorkbox/Network/
https://oss.sonatype.org/content/repositories/releases/com/dorkbox/Network-Dorkbox-Util/
https://oss.sonatype.org/content/repositories/releases/com/dorkbox/ObjectPool/

View File

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

View File

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

View File

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

View File

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