Updated version

This commit is contained in:
Robinson 2023-01-05 23:10:31 +01:00
parent 489ca884ff
commit f6105a3b11
No known key found for this signature in database
GPG Key ID: 8E7DB78588BD6F5C
6 changed files with 20 additions and 20 deletions

28
LICENSE
View File

@ -1325,7 +1325,7 @@
- OS - Information about the system, Java runtime, OS, Window Manager, and Desktop Environment. - OS - Information about the system, Java runtime, OS, Window Manager, and Desktop Environment.
[The Apache Software License, Version 2.0] [The Apache Software License, Version 2.0]
https://git.dorkbox.com/dorkbox/OS https://git.dorkbox.com/dorkbox/OS
Copyright 2022 Copyright 2023
Dorkbox LLC Dorkbox LLC
Extra license information Extra license information
@ -1727,7 +1727,7 @@
- Utilities - Utilities for use within Java projects - Utilities - Utilities for use within Java projects
[The Apache Software License, Version 2.0] [The Apache Software License, Version 2.0]
https://git.dorkbox.com/dorkbox/Utilities https://git.dorkbox.com/dorkbox/Utilities
Copyright 2022 Copyright 2023
Dorkbox LLC Dorkbox LLC
Extra license information Extra license information
@ -1814,32 +1814,32 @@
- kotlinx.coroutines - Library support for Kotlin coroutines with multiplatform support - kotlinx.coroutines - Library support for Kotlin coroutines with multiplatform support
[The Apache Software License, Version 2.0] [The Apache Software License, Version 2.0]
https://github.com/Kotlin/kotlinx.coroutines https://github.com/Kotlin/kotlinx.coroutines
Copyright 2022 Copyright 2023
JetBrains s.r.o. JetBrains s.r.o.
- Java Uuid Generator - A set of Java classes for working with UUIDs - Java Uuid Generator - A set of Java classes for working with UUIDs
[The Apache Software License, Version 2.0] [The Apache Software License, Version 2.0]
https://github.com/cowtowncoder/java-uuid-generator https://github.com/cowtowncoder/java-uuid-generator
Copyright 2022 Copyright 2023
Tatu Saloranta (tatu.saloranta@iki.fi) Tatu Saloranta (tatu.saloranta@iki.fi)
Contributors. See source release-notes/CREDITS Contributors. See source release-notes/CREDITS
- kotlin-logging - Lightweight logging framework for Kotlin - kotlin-logging - Lightweight logging framework for Kotlin
[The Apache Software License, Version 2.0] [The Apache Software License, Version 2.0]
https://github.com/MicroUtils/kotlin-logging https://github.com/MicroUtils/kotlin-logging
Copyright 2022 Copyright 2023
Ohad Shai Ohad Shai
- SLF4J - Simple facade or abstraction for various logging frameworks - SLF4J - Simple facade or abstraction for various logging frameworks
[MIT License] [MIT License]
http://www.slf4j.org http://www.slf4j.org
Copyright 2022 Copyright 2023
QOS.ch QOS.ch
- XZ for Java - Complete implementation of XZ data compression in pure Java - XZ for Java - Complete implementation of XZ data compression in pure Java
[Public Domain, per Creative Commons CC0] [Public Domain, per Creative Commons CC0]
https://tukaani.org/xz/java.html https://tukaani.org/xz/java.html
Copyright 2022 Copyright 2023
Lasse Collin Lasse Collin
Igor Pavlov Igor Pavlov
@ -1854,38 +1854,38 @@
- JNA - Simplified native library access for Java. - JNA - Simplified native library access for Java.
[The Apache Software License, Version 2.0] [The Apache Software License, Version 2.0]
https://github.com/twall/jna https://github.com/twall/jna
Copyright 2022 Copyright 2023
Timothy Wall Timothy Wall
- JNA-Platform - Mappings for a number of commonly used platform functions - JNA-Platform - Mappings for a number of commonly used platform functions
[The Apache Software License, Version 2.0] [The Apache Software License, Version 2.0]
https://github.com/twall/jna https://github.com/twall/jna
Copyright 2022 Copyright 2023
Timothy Wall Timothy Wall
- Netty - An event-driven asynchronous network application framework - Netty - An event-driven asynchronous network application framework
[The Apache Software License, Version 2.0] [The Apache Software License, Version 2.0]
https://netty.io https://netty.io
Copyright 2022 Copyright 2023
The Netty Project The Netty Project
Contributors. See source NOTICE Contributors. See source NOTICE
- Bouncy Castle Crypto - Lightweight cryptography API and JCE Extension - Bouncy Castle Crypto - Lightweight cryptography API and JCE Extension
[The Apache Software License, Version 2.0] [The Apache Software License, Version 2.0]
http://www.bouncycastle.org http://www.bouncycastle.org
Copyright 2022 Copyright 2023
The Legion of the Bouncy Castle Inc The Legion of the Bouncy Castle Inc
- Lightweight Java Game Library - Java library that enables cross-platform access to popular native APIs - Lightweight Java Game Library - Java library that enables cross-platform access to popular native APIs
[BSD 3-Clause License] [BSD 3-Clause License]
https://github.com/LWJGL/lwjgl3 https://github.com/LWJGL/lwjgl3
Copyright 2022 Copyright 2023
Lightweight Java Game Library Lightweight Java Game Library
- TypeTools - A simple, zero-dependency library for working with types. Supports Java 1.6+ and Android. - TypeTools - A simple, zero-dependency library for working with types. Supports Java 1.6+ and Android.
[The Apache Software License, Version 2.0] [The Apache Software License, Version 2.0]
https://github.com/jhalterman/typetools https://github.com/jhalterman/typetools
Copyright 2022 Copyright 2023
Jonathan Halterman and friends Jonathan Halterman and friends
- Collections - Niche collections to augment what is already available. - Collections - Niche collections to augment what is already available.
@ -2240,7 +2240,7 @@
- OS - Information about the system, Java runtime, OS, Window Manager, and Desktop Environment. - OS - Information about the system, Java runtime, OS, Window Manager, and Desktop Environment.
[The Apache Software License, Version 2.0] [The Apache Software License, Version 2.0]
https://git.dorkbox.com/dorkbox/OS https://git.dorkbox.com/dorkbox/OS
Copyright 2022 Copyright 2023
Dorkbox LLC Dorkbox LLC
Extra license information Extra license information

View File

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

View File

@ -39,7 +39,7 @@ object Extras {
// set for the project // set for the project
const val description = "High-performance, event-driven/reactive network stack for Java 11+" const val description = "High-performance, event-driven/reactive network stack for Java 11+"
const val group = "com.dorkbox" const val group = "com.dorkbox"
const val version = "6.2" const val version = "6.3"
// set as project.ext // set as project.ext
const val name = "Network" const val name = "Network"

View File

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

View File

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