version 2.9.1

This commit is contained in:
Robinson 2024-01-22 17:41:22 +01:00
parent a8e6952ccd
commit 1d69c6d2e0
No known key found for this signature in database
GPG Key ID: 8E7DB78588BD6F5C
3 changed files with 5 additions and 5 deletions

View File

@ -34,7 +34,7 @@ Maven Info
<dependency> <dependency>
<groupId>com.dorkbox</groupId> <groupId>com.dorkbox</groupId>
<artifactId>Config</artifactId> <artifactId>Config</artifactId>
<version>2.9</version> <version>2.9.1</version>
</dependency> </dependency>
</dependencies> </dependencies>
``` ```
@ -44,7 +44,7 @@ Gradle Info
``` ```
dependencies { dependencies {
... ...
implementation("com.dorkbox:Config:2.9") implementation("com.dorkbox:Config:2.9.1")
} }
``` ```

View File

@ -36,7 +36,7 @@ object Extras {
// set for the project // set for the project
const val description = "CLI, system properties, environment variables, or JSON text/file input processing." const val description = "CLI, system properties, environment variables, or JSON text/file input processing."
const val group = "com.dorkbox" const val group = "com.dorkbox"
const val version = "2.9" const val version = "2.9.1"
// set as project.ext // set as project.ext
const val name = "Config" const val name = "Config"
@ -81,7 +81,7 @@ tasks.jar.get().apply {
dependencies { dependencies {
api(kotlin("reflect")) api(kotlin("reflect"))
api("com.dorkbox:Json:1.8") api("com.dorkbox:Json:1.9")
api("com.dorkbox:OS:1.11") api("com.dorkbox:OS:1.11")
api("com.dorkbox:Updates:1.1") api("com.dorkbox:Updates:1.1")

View File

@ -121,7 +121,7 @@ class ConfigProcessor<T : Any>
/** /**
* Gets the version number. * Gets the version number.
*/ */
const val version = "2.9" const val version = "2.9.1"
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