diff --git a/README.md b/README.md index c7d9e28..37030ce 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ Maven Info com.dorkbox ByteUtilities - 1.10 + 1.11 ``` @@ -21,7 +21,7 @@ Gradle Info ```` dependencies { ... - compile "com.dorkbox:ByteUtilities:1.8" + compile "com.dorkbox:ByteUtilities:1.11" } ```` diff --git a/build.gradle.kts b/build.gradle.kts index d4acab0..441d049 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -36,7 +36,7 @@ object Extras { // set for the project const val description = "Byte manipulation and SHA/xxHash utilities" const val group = "com.dorkbox" - const val version = "1.10" + const val version = "1.11" // set as project.ext const val name = "ByteUtilities" @@ -105,10 +105,12 @@ dependencies { compileOnly("io.netty:netty-buffer:4.1.93.Final") 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("com.esotericsoftware:kryo:5.5.0") +// testImplementation("org.lz4:lz4-java:1.8.0") testImplementation("junit:junit:4.13.2") } diff --git a/src/dorkbox/bytes/BytesInfo.kt b/src/dorkbox/bytes/BytesInfo.kt index 61f402e..fe73506 100644 --- a/src/dorkbox/bytes/BytesInfo.kt +++ b/src/dorkbox/bytes/BytesInfo.kt @@ -19,7 +19,7 @@ object BytesInfo { /** * Gets the version number. */ - const val version = "1.10" + const val version = "1.11" init { // Add this project to the updates system, which verifies this class + UUID + version information