version 6.9.1

This commit is contained in:
Robinson 2023-08-21 19:53:10 +02:00
parent b639ec1372
commit 364b29fd0c
No known key found for this signature in database
GPG Key ID: 8E7DB78588BD6F5C
6 changed files with 6 additions and 20 deletions

View File

@ -100,12 +100,6 @@
Yann Collet
Adrien Grand
- TypeTools - A simple, zero-dependency library for working with types. Supports Java 1.6+ and Android.
[The Apache Software License, Version 2.0]
https://github.com/jhalterman/typetools
Copyright 2023
Jonathan Halterman and friends
- Jodah Expiring Map - high performance thread-safe map that expires entries
[The Apache Software License, Version 2.0]
https://github.com/jhalterman/expiringmap

View File

@ -72,7 +72,7 @@ Maven Info
<dependency>
<groupId>com.dorkbox</groupId>
<artifactId>Network</artifactId>
<version>6.9</version>
<version>6.9.1</version>
</dependency>
</dependencies>
```
@ -82,7 +82,7 @@ Gradle Info
```
dependencies {
...
implementation("com.dorkbox:Network:6.9")
implementation("com.dorkbox:Network:6.9.1")
}
```

View File

@ -37,7 +37,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.9"
const val version = "6.9.1"
// set as project.ext
const val name = "Network"
@ -205,14 +205,6 @@ dependencies {
// https://github.com/lz4/lz4-java
api("org.lz4:lz4-java:1.8.0")
// this is NOT the same thing as LMAX disruptor.
// This is just a slightly faster queue than LMAX. (LMAX is a fast queue + other things w/ a difficult DSL)
// https://github.com/conversant/disruptor_benchmark
// https://www.youtube.com/watch?v=jVMOgQgYzWU
//api("com.conversantmedia:disruptor:1.2.19")
// https://github.com/jhalterman/typetools
api("net.jodah:typetools:0.6.3")
// Expiring Map (A high performance thread-safe map that expires entries)
// https://github.com/jhalterman/expiringmap

View File

@ -117,7 +117,7 @@ open class Client<CONNECTION : Connection>(
/**
* Gets the version number.
*/
const val version = "6.9"
const val version = "6.9.1"
/**
* Ensures that the client (using the specified configuration) is NO LONGER running.

View File

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

View File

@ -117,7 +117,7 @@ open class Server<CONNECTION : Connection>(
/**
* Gets the version number.
*/
const val version = "6.9"
const val version = "6.9.1"
/**
* Ensures that an endpoint (using the specified configuration) is NO LONGER running.