Updated library

connection_type_change Version_2.7.1
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>
<groupId>com.dorkbox</groupId>
<artifactId>NetworkDNS</artifactId>
<version>2.7</version>
<version>2.7.1</version>
</dependency>
</dependencies>
```
@ -27,7 +27,7 @@ Gradle Info
```
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
const val description = "High-performance and event-driven/reactive DNS stack for Java 8+"
const val group = "com.dorkbox"
const val version = "2.7"
const val version = "2.7.1"
// set as project.ext
const val name = "NetworkDNS"
@ -89,7 +89,7 @@ tasks.jar.get().apply {
dependencies {
api("com.dorkbox:NetworkUtils:2.15")
api("com.dorkbox:OS:1.0")
api("com.dorkbox:Utilities:1.25")
api("com.dorkbox:Utilities:1.29")
api("com.dorkbox:Updates:1.1")
val nettyVer = "4.1.77.Final"

View File

@ -84,7 +84,7 @@ class DnsClient(nameServerAddresses: Collection<InetSocketAddress?>? = defaultNa
/**
* Gets the version number.
*/
val version = "2.7"
val version = "2.7.1"
init {
// 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.
*/
val version = "2.7"
val version = "2.7.1"
var workerThreadPoolSize = (Runtime.getRuntime().availableProcessors() / 2).coerceAtLeast(1)