diff --git a/LICENSE b/LICENSE index e5418a2a..20a5008b 100644 --- a/LICENSE +++ b/LICENSE @@ -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 diff --git a/README.md b/README.md index e847c9a4..348c23c8 100644 --- a/README.md +++ b/README.md @@ -83,20 +83,19 @@ client.send()

(We now release to maven!

-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. ``` com.dorkbox Network - 1.20 + 1.21 ``` 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/ diff --git a/src/dorkbox/network/Broadcast.java b/src/dorkbox/network/Broadcast.java index 6ab1b86c..ced10201 100644 --- a/src/dorkbox/network/Broadcast.java +++ b/src/dorkbox/network/Broadcast.java @@ -48,7 +48,7 @@ class Broadcast { */ public static String getVersion() { - return "1.20"; + return "1.21"; } /** diff --git a/src/dorkbox/network/Client.java b/src/dorkbox/network/Client.java index 9fdd2bc9..e48b3a47 100644 --- a/src/dorkbox/network/Client.java +++ b/src/dorkbox/network/Client.java @@ -66,7 +66,7 @@ class Client extends EndPointClient implements Connecti */ public static String getVersion() { - return "1.20"; + return "1.21"; } /** diff --git a/src/dorkbox/network/DnsClient.java b/src/dorkbox/network/DnsClient.java index 902f728c..efd17d20 100644 --- a/src/dorkbox/network/DnsClient.java +++ b/src/dorkbox/network/DnsClient.java @@ -114,7 +114,7 @@ class DnsClient { */ public static String getVersion() { - return "1.20"; + return "1.21"; } /** diff --git a/src/dorkbox/network/Server.java b/src/dorkbox/network/Server.java index 8ed97638..202de154 100644 --- a/src/dorkbox/network/Server.java +++ b/src/dorkbox/network/Server.java @@ -63,7 +63,7 @@ class Server extends EndPointServer { */ public static String getVersion() { - return "1.20"; + return "1.21"; } /**