Updated library

This commit is contained in:
Robinson 2022-07-26 23:29:07 +02:00
parent 609ea0c9aa
commit 8d73a3018a
No known key found for this signature in database
GPG Key ID: 8E7DB78588BD6F5C
4 changed files with 6 additions and 6 deletions

View File

@ -17,7 +17,7 @@ Maven Info
<dependency> <dependency>
<groupId>com.dorkbox</groupId> <groupId>com.dorkbox</groupId>
<artifactId>NetworkDNS</artifactId> <artifactId>NetworkDNS</artifactId>
<version>2.7</version> <version>2.7.1</version>
</dependency> </dependency>
</dependencies> </dependencies>
``` ```
@ -27,7 +27,7 @@ Gradle Info
``` ```
dependencies { dependencies {
... ...
implementation("com.dorkbox:NetworkDNS:2.7") implementation("com.dorkbox:NetworkDNS:2.7.1")
} }
``` ```

View File

@ -37,7 +37,7 @@ object Extras {
// set for the project // set for the project
const val description = "High-performance and event-driven/reactive DNS stack for Java 8+" const val description = "High-performance and event-driven/reactive DNS stack for Java 8+"
const val group = "com.dorkbox" const val group = "com.dorkbox"
const val version = "2.7" const val version = "2.7.1"
// set as project.ext // set as project.ext
const val name = "NetworkDNS" const val name = "NetworkDNS"
@ -89,7 +89,7 @@ tasks.jar.get().apply {
dependencies { dependencies {
api("com.dorkbox:NetworkUtils:2.15") api("com.dorkbox:NetworkUtils:2.15")
api("com.dorkbox:OS:1.0") api("com.dorkbox:OS:1.0")
api("com.dorkbox:Utilities:1.25") api("com.dorkbox:Utilities:1.29")
api("com.dorkbox:Updates:1.1") api("com.dorkbox:Updates:1.1")
val nettyVer = "4.1.77.Final" val nettyVer = "4.1.77.Final"

View File

@ -84,7 +84,7 @@ class DnsClient(nameServerAddresses: Collection<InetSocketAddress?>? = defaultNa
/** /**
* Gets the version number. * Gets the version number.
*/ */
val version = "2.7" val version = "2.7.1"
init { init {
// Add this project to the updates system, which verifies this class + UUID + version information // Add this project to the updates system, which verifies this class + UUID + version information

View File

@ -69,7 +69,7 @@ class DnsServer(host: String?, tcpPort: Int) : Shutdownable(DnsServer::class.jav
/** /**
* Gets the version number. * Gets the version number.
*/ */
val version = "2.7" val version = "2.7.1"
var workerThreadPoolSize = (Runtime.getRuntime().availableProcessors() / 2).coerceAtLeast(1) var workerThreadPoolSize = (Runtime.getRuntime().availableProcessors() / 2).coerceAtLeast(1)