diff --git a/LICENSE b/LICENSE index 584087c..2e97b3a 100644 --- a/LICENSE +++ b/LICENSE @@ -14,7 +14,7 @@ Kotlin Compiler, Test Data+Libraries, and Tools repository contain third-party code, to which different licenses may apply See: https://github.com/JetBrains/kotlin/blob/master/license/README.md - - ByteUtils - Byte manipulation and SHA/xxHash utilities + - ByteUtilities - Byte manipulation and SHA/xxHash utilities [The Apache Software License, Version 2.0] https://git.dorkbox.com/dorkbox/ByteUtilities Copyright 2023 @@ -27,12 +27,6 @@ Copyright 2020 Nathan Sweet - - Kotlin Hex - - [MIT License] - https://github.com/komputing/KHex - Copyright 2017 - ligi - - Base58 - [The Apache Software License, Version 2.0] https://bitcoinj.github.io @@ -146,13 +140,6 @@ Lightweight Java Game Library Project Riven - - Modified hex conversion utility methods - - [The Apache Software License, Version 2.0] - https://git.dorkbox.com/dorkbox/Utilities - https://netty.io - Copyright 2014 - The Netty Project - - Retrofit - A type-safe HTTP client for Android and Java [The Apache Software License, Version 2.0] https://github.com/square/retrofit diff --git a/README.md b/README.md index ce5b71d..3f30e0a 100644 --- a/README.md +++ b/README.md @@ -26,7 +26,7 @@ Maven Info com.dorkbox CabParser - 3.3 + 3.4 ``` @@ -36,7 +36,7 @@ Gradle Info ``` dependencies { ... - implementation("com.dorkbox:CabParser:3.3") + implementation("com.dorkbox:CabParser:3.4") } ``` diff --git a/build.gradle.kts b/build.gradle.kts index cfba39a..c797c51 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -38,7 +38,7 @@ object Extras { // set for the project const val description = "Parse and extract data from Microsoft LZX compressed .cab files for Java 8+" const val group = "com.dorkbox" - const val version = "3.3" + const val version = "3.4" // set as project.ext const val name = "CabParser" @@ -93,9 +93,9 @@ tasks.jar.get().apply { } dependencies { - api("com.dorkbox:ByteUtilities:1.14") + api("com.dorkbox:ByteUtilities:2.0") api("com.dorkbox:Updates:1.1") - api("com.dorkbox:Utilities:1.45") + api("com.dorkbox:Utilities:1.46") } publishToSonatype { diff --git a/src/dorkbox/cabParser/CabParser.kt b/src/dorkbox/cabParser/CabParser.kt index 89262ff..0486b37 100644 --- a/src/dorkbox/cabParser/CabParser.kt +++ b/src/dorkbox/cabParser/CabParser.kt @@ -29,7 +29,7 @@ class CabParser { /** * Gets the version number. */ - const val version: String = "3.2" + const val version = "3.4" init { // Add this project to the updates system, which verifies this class + UUID + version information