updated version

master
Robinson 2023-02-14 23:47:04 +01:00
parent c289f02cb9
commit 9f42800d6a
No known key found for this signature in database
GPG Key ID: 8E7DB78588BD6F5C
5 changed files with 11 additions and 11 deletions

View File

@ -95,7 +95,7 @@ Maven Info
<dependency>
<groupId>com.dorkbox</groupId>
<artifactId>Network</artifactId>
<version>6.3</version>
<version>6.4</version>
</dependency>
</dependencies>
```
@ -105,7 +105,7 @@ Gradle Info
```
dependencies {
...
implementation("com.dorkbox:Network:6.3")
implementation("com.dorkbox:Network:6.4")
}
```

View File

@ -25,10 +25,10 @@ import java.time.Instant
gradle.startParameter.showStacktrace = ShowStacktrace.ALWAYS // always show the stacktrace!
plugins {
id("com.dorkbox.GradleUtils") version "3.11"
id("com.dorkbox.Licensing") version "2.21"
id("com.dorkbox.VersionUpdate") version "2.6"
id("com.dorkbox.GradlePublish") version "1.17"
id("com.dorkbox.GradleUtils") version "3.13"
id("com.dorkbox.Licensing") version "2.22"
id("com.dorkbox.VersionUpdate") version "2.7"
id("com.dorkbox.GradlePublish") version "1.18"
id("com.github.johnrengelman.shadow") version "7.1.2"
@ -39,7 +39,7 @@ object Extras {
// set for the project
const val description = "High-performance, event-driven/reactive network stack for Java 11+"
const val group = "com.dorkbox"
const val version = "6.3"
const val version = "6.4"
// set as project.ext
const val name = "Network"
@ -63,7 +63,7 @@ GradleUtils.compileConfiguration(JavaVersion.VERSION_11) {
freeCompilerArgs = listOf("-Xinline-classes")
}
//GradleUtils.jpms(JavaVersion.VERSION_11)
//NOTE: we do not support JPMS yet, as there are some libraries missing support for it still
//NOTE: we do not support JPMS yet, as there are some libraries missing support for it still, notably kotlin!
// ratelimiter, "other" package

View File

@ -129,7 +129,7 @@ open class Client<CONNECTION : Connection>(
/**
* Gets the version number.
*/
const val version = "6.3"
const val version = "6.4"
/**
* Checks to see if a client (using the specified configuration) is running.

View File

@ -45,7 +45,7 @@ class ServerConfiguration : dorkbox.network.Configuration() {
/**
* Gets the version number.
*/
const val version = "6.3"
const val version = "6.4"
}
/**

View File

@ -120,7 +120,7 @@ open class Server<CONNECTION : Connection>(
/**
* Gets the version number.
*/
const val version = "6.3"
const val version = "6.4"
/**
* Checks to see if a server (using the specified configuration) is running.