diff --git a/LICENSE b/LICENSE index f05d01c..d22bef5 100644 --- a/LICENSE +++ b/LICENSE @@ -63,6 +63,13 @@ https://github.com/EsotericSoftware/minlog Nathan Sweet + - LZ4 and xxHash - LZ4 compression for Java, based on Yann Collet's work + [The Apache Software License, Version 2.0] + https://github.com/lz4/lz4 + Copyright 2023 + Yann Collet + Adrien Grand + - Updates - Software Update Management [The Apache Software License, Version 2.0] https://git.dorkbox.com/dorkbox/Updates diff --git a/README.md b/README.md index 85589b3..76d6398 100644 --- a/README.md +++ b/README.md @@ -11,19 +11,19 @@ Maven Info com.dorkbox ByteUtilities - 1.12 + 1.13 ``` Gradle Info --------- -```` +``` dependencies { ... - compile "com.dorkbox:ByteUtilities:1.11" + implementation("com.dorkbox:ByteUtilities:1.13") } -```` +``` License diff --git a/build.gradle.kts b/build.gradle.kts index 3202807..9fbea65 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.12" + const val version = "1.13" // set as project.ext const val name = "ByteUtilities" diff --git a/src/dorkbox/bytes/BytesInfo.kt b/src/dorkbox/bytes/BytesInfo.kt index 20b6e5d..ac84bc4 100644 --- a/src/dorkbox/bytes/BytesInfo.kt +++ b/src/dorkbox/bytes/BytesInfo.kt @@ -19,10 +19,10 @@ object BytesInfo { /** * Gets the version number. */ - const val version = "1.12" + const val version = "1.13" init { // Add this project to the updates system, which verifies this class + UUID + version information - dorkbox.updates.Updates.add(Hex::class.java, "f176cecea06e48e1a96d59c08a6e98c3", version) + dorkbox.updates.Updates.add(BytesInfo::class.java, "f176cecea06e48e1a96d59c08a6e98c3", version) } }