version 1.13

This commit is contained in:
Robinson 2023-08-05 22:44:05 -06:00
parent 51682a889e
commit 16c4fcaff5
No known key found for this signature in database
GPG Key ID: 8E7DB78588BD6F5C
4 changed files with 14 additions and 7 deletions

View File

@ -63,6 +63,13 @@
https://github.com/EsotericSoftware/minlog https://github.com/EsotericSoftware/minlog
Nathan Sweet 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 - Updates - Software Update Management
[The Apache Software License, Version 2.0] [The Apache Software License, Version 2.0]
https://git.dorkbox.com/dorkbox/Updates https://git.dorkbox.com/dorkbox/Updates

View File

@ -11,19 +11,19 @@ Maven Info
<dependency> <dependency>
<groupId>com.dorkbox</groupId> <groupId>com.dorkbox</groupId>
<artifactId>ByteUtilities</artifactId> <artifactId>ByteUtilities</artifactId>
<version>1.12</version> <version>1.13</version>
</dependency> </dependency>
</dependencies> </dependencies>
``` ```
Gradle Info Gradle Info
--------- ---------
```` ```
dependencies { dependencies {
... ...
compile "com.dorkbox:ByteUtilities:1.11" implementation("com.dorkbox:ByteUtilities:1.13")
} }
```` ```
License License

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.12" const val version = "1.13"
// set as project.ext // set as project.ext
const val name = "ByteUtilities" const val name = "ByteUtilities"

View File

@ -19,10 +19,10 @@ object BytesInfo {
/** /**
* Gets the version number. * Gets the version number.
*/ */
const val version = "1.12" const val version = "1.13"
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
dorkbox.updates.Updates.add(Hex::class.java, "f176cecea06e48e1a96d59c08a6e98c3", version) dorkbox.updates.Updates.add(BytesInfo::class.java, "f176cecea06e48e1a96d59c08a6e98c3", version)
} }
} }