Version 1.11

This commit is contained in:
Robinson 2023-07-13 23:00:43 +02:00
parent 300d274dfb
commit bdff9f7282
No known key found for this signature in database
GPG Key ID: 8E7DB78588BD6F5C
3 changed files with 7 additions and 5 deletions

View File

@ -11,7 +11,7 @@ Maven Info
<dependency> <dependency>
<groupId>com.dorkbox</groupId> <groupId>com.dorkbox</groupId>
<artifactId>ByteUtilities</artifactId> <artifactId>ByteUtilities</artifactId>
<version>1.10</version> <version>1.11</version>
</dependency> </dependency>
</dependencies> </dependencies>
``` ```
@ -21,7 +21,7 @@ Gradle Info
```` ````
dependencies { dependencies {
... ...
compile "com.dorkbox:ByteUtilities:1.8" compile "com.dorkbox:ByteUtilities:1.11"
} }
```` ````

View File

@ -36,7 +36,7 @@ object Extras {
// set for the project // set for the project
const val description = "Byte manipulation and SHA/xxHash utilities" const val description = "Byte manipulation and SHA/xxHash utilities"
const val group = "com.dorkbox" const val group = "com.dorkbox"
const val version = "1.10" const val version = "1.11"
// set as project.ext // set as project.ext
const val name = "ByteUtilities" const val name = "ByteUtilities"
@ -105,10 +105,12 @@ dependencies {
compileOnly("io.netty:netty-buffer:4.1.93.Final") compileOnly("io.netty:netty-buffer:4.1.93.Final")
compileOnly("com.esotericsoftware:kryo:5.5.0") compileOnly("com.esotericsoftware:kryo:5.5.0")
compileOnly("org.lwjgl:lwjgl-xxhash:3.3.2") // https://github.com/lz4/lz4-java
api("org.lz4:lz4-java:1.8.0")
testImplementation("io.netty:netty-buffer:4.1.93.Final") testImplementation("io.netty:netty-buffer:4.1.93.Final")
testImplementation("com.esotericsoftware:kryo:5.5.0") testImplementation("com.esotericsoftware:kryo:5.5.0")
// testImplementation("org.lz4:lz4-java:1.8.0")
testImplementation("junit:junit:4.13.2") testImplementation("junit:junit:4.13.2")
} }

View File

@ -19,7 +19,7 @@ object BytesInfo {
/** /**
* Gets the version number. * Gets the version number.
*/ */
const val version = "1.10" const val version = "1.11"
init { init {
// Add this project to the updates system, which verifies this class + UUID + version information // Add this project to the updates system, which verifies this class + UUID + version information