Version 2.16

master
Robinson 2023-10-02 23:49:13 +02:00
parent c9755c6c82
commit 1e3db0d1ad
No known key found for this signature in database
GPG Key ID: 8E7DB78588BD6F5C
4 changed files with 7 additions and 7 deletions

View File

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

View File

@ -28,16 +28,16 @@ plugins {
id("com.dorkbox.GradleUtils") version "3.17"
id("com.dorkbox.Licensing") version "2.26"
id("com.dorkbox.VersionUpdate") version "2.8"
id("com.dorkbox.GradlePublish") version "1.18"
id("com.dorkbox.GradlePublish") version "1.20"
kotlin("jvm") version "1.8.0"
kotlin("jvm") version "1.9.0"
}
object Extras {
// set for the project
const val description = "High-performance and event-driven/reactive DNS stack for Java 8+"
const val group = "com.dorkbox"
const val version = "2.15"
const val version = "2.16"
// set as project.ext
const val name = "NetworkDNS"

View File

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

View File

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