version 1.6

This commit is contained in:
Robinson 2023-08-06 00:43:47 -06:00
parent f5f776f7cb
commit 42f2b876cf
No known key found for this signature in database
GPG Key ID: 8E7DB78588BD6F5C
3 changed files with 4 additions and 4 deletions

View File

@ -11,7 +11,7 @@ Maven Info
<dependency> <dependency>
<groupId>com.dorkbox</groupId> <groupId>com.dorkbox</groupId>
<artifactId>Storage</artifactId> <artifactId>Storage</artifactId>
<version>1.5</version> <version>1.6</version>
</dependency> </dependency>
</dependencies> </dependencies>
``` ```
@ -21,7 +21,7 @@ Gradle Info
``` ```
dependencies { dependencies {
... ...
compile "com.dorkbox:Storage:1.5" compile "com.dorkbox:Storage:1.6"
} }
``` ```

View File

@ -35,7 +35,7 @@ object Extras {
// set for the project // set for the project
const val description = "Storage system for Java" const val description = "Storage system for Java"
const val group = "com.dorkbox" const val group = "com.dorkbox"
const val version = "1.5" const val version = "1.6"
// set as project.ext // set as project.ext
const val name = "Storage" const val name = "Storage"

View File

@ -33,7 +33,7 @@ abstract class Storage(val logger: KLogger) : AutoCloseable {
/** /**
* Gets the version number. * Gets the version number.
*/ */
const val version = "1.5" const val version = "1.6"
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