diff --git a/LICENSE b/LICENSE index 687543fa..31448375 100644 --- a/LICENSE +++ b/LICENSE @@ -124,6 +124,36 @@ Kotlin Compiler, Test Data+Libraries, and Tools repository contain third-party code, to which different licenses may apply See: https://github.com/JetBrains/kotlin/blob/master/license/README.md + - OS - Information about the system, Java runtime, OS, Window Manager, and Desktop Environment. + [The Apache Software License, Version 2.0] + https://git.dorkbox.com/dorkbox/OS + Copyright 2022 + Dorkbox LLC + + Extra license information + - Kotlin - + [The Apache Software License, Version 2.0] + https://github.com/JetBrains/kotlin + Copyright 2020 + JetBrains s.r.o. and Kotlin Programming Language contributors + Kotlin Compiler, Test Data+Libraries, and Tools repository contain third-party code, to which different licenses may apply + See: https://github.com/JetBrains/kotlin/blob/master/license/README.md + + - Updates - Software Update Management + [The Apache Software License, Version 2.0] + https://git.dorkbox.com/dorkbox/Updates + Copyright 2021 + Dorkbox LLC + + Extra license information + - Kotlin - + [The Apache Software License, Version 2.0] + https://github.com/JetBrains/kotlin + Copyright 2020 + JetBrains s.r.o. and Kotlin Programming Language contributors + Kotlin Compiler, Test Data+Libraries, and Tools repository contain third-party code, to which different licenses may apply + See: https://github.com/JetBrains/kotlin/blob/master/license/README.md + - ByteUtilties - Byte manipulation and Unsigned Number Utilities [The Apache Software License, Version 2.0] https://git.dorkbox.com/dorkbox/ByteUtilities @@ -1128,3 +1158,33 @@ JetBrains s.r.o. and Kotlin Programming Language contributors Kotlin Compiler, Test Data+Libraries, and Tools repository contain third-party code, to which different licenses may apply See: https://github.com/JetBrains/kotlin/blob/master/license/README.md + + - OS - Information about the system, Java runtime, OS, Window Manager, and Desktop Environment. + [The Apache Software License, Version 2.0] + https://git.dorkbox.com/dorkbox/OS + Copyright 2022 + Dorkbox LLC + + Extra license information + - Kotlin - + [The Apache Software License, Version 2.0] + https://github.com/JetBrains/kotlin + Copyright 2020 + JetBrains s.r.o. and Kotlin Programming Language contributors + Kotlin Compiler, Test Data+Libraries, and Tools repository contain third-party code, to which different licenses may apply + See: https://github.com/JetBrains/kotlin/blob/master/license/README.md + + - Updates - Software Update Management + [The Apache Software License, Version 2.0] + https://git.dorkbox.com/dorkbox/Updates + Copyright 2021 + Dorkbox LLC + + Extra license information + - Kotlin - + [The Apache Software License, Version 2.0] + https://github.com/JetBrains/kotlin + Copyright 2020 + JetBrains s.r.o. and Kotlin Programming Language contributors + Kotlin Compiler, Test Data+Libraries, and Tools repository contain third-party code, to which different licenses may apply + See: https://github.com/JetBrains/kotlin/blob/master/license/README.md diff --git a/README.md b/README.md index 120fe167..1aee9a16 100644 --- a/README.md +++ b/README.md @@ -93,7 +93,7 @@ Maven Info com.dorkbox Network - 5.9 + 5.9.1 ``` @@ -103,7 +103,7 @@ Gradle Info ``` dependencies { ... - implementation("com.dorkbox:Network:5.9") + implementation("com.dorkbox:Network:5.9.1") } ``` diff --git a/build.gradle.kts b/build.gradle.kts index 2c2713c3..a674bc0d 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -37,7 +37,7 @@ object Extras { // set for the project const val description = "Encrypted, high-performance, and event-driven/reactive network stack for Java 8+" const val group = "com.dorkbox" - const val version = "5.9" + const val version = "5.9.1" // set as project.ext const val name = "Network" @@ -145,6 +145,7 @@ dependencies { // https://github.com/dorkbox api("com.dorkbox:Updates:1.1") + api("com.dorkbox:OS:1.0") api("com.dorkbox:ByteUtilities:1.5") api("com.dorkbox:MinLog:2.4") @@ -152,7 +153,7 @@ dependencies { api("com.dorkbox:ObjectPool:3.5") api("com.dorkbox:Serializers:2.6") api("com.dorkbox:Storage:1.1") - api("com.dorkbox:Utilities:1.16") + api("com.dorkbox:Utilities:1.17") // https://github.com/real-logic/aeron diff --git a/src/dorkbox/network/Client.kt b/src/dorkbox/network/Client.kt index 74fa1fa4..7f27559a 100644 --- a/src/dorkbox/network/Client.kt +++ b/src/dorkbox/network/Client.kt @@ -55,7 +55,7 @@ open class Client( /** * Gets the version number. */ - const val version = "5.9" + const val version = "5.9.1" /** * Checks to see if a client (using the specified configuration) is running. diff --git a/src/dorkbox/network/Configuration.kt b/src/dorkbox/network/Configuration.kt index ee9da551..a5ff1978 100644 --- a/src/dorkbox/network/Configuration.kt +++ b/src/dorkbox/network/Configuration.kt @@ -40,7 +40,7 @@ class ServerConfiguration : dorkbox.network.Configuration() { /** * Gets the version number. */ - const val version = "5.9" + const val version = "5.9.1" } /** diff --git a/src/dorkbox/network/Server.kt b/src/dorkbox/network/Server.kt index fb02949d..a40c880f 100644 --- a/src/dorkbox/network/Server.kt +++ b/src/dorkbox/network/Server.kt @@ -62,7 +62,7 @@ open class Server( /** * Gets the version number. */ - const val version = "5.9" + const val version = "5.9.1" /** * Checks to see if a server (using the specified configuration) is running.