From a8e6952ccdfb6e2fb484c6206e980417981511a0 Mon Sep 17 00:00:00 2001 From: Robinson Date: Sat, 20 Jan 2024 09:51:33 +0100 Subject: [PATCH] version 2.9 --- LICENSE | 8 ++++---- README.md | 4 ++-- build.gradle.kts | 8 ++++---- src/dorkbox/config/ConfigProcessor.kt | 2 +- 4 files changed, 11 insertions(+), 11 deletions(-) diff --git a/LICENSE b/LICENSE index fd6860d..10afd4e 100644 --- a/LICENSE +++ b/LICENSE @@ -1,7 +1,7 @@ - Config - CLI, system properties, environment variables, or JSON text/file input processing. [The Apache Software License, Version 2.0] https://git.dorkbox.com/dorkbox/Config - Copyright 2023 + Copyright 2024 Dorkbox LLC Extra license information @@ -16,13 +16,13 @@ - SLF4J - Simple facade or abstraction for various logging frameworks [MIT License] https://www.slf4j.org - Copyright 2023 + Copyright 2024 QOS.ch - Json - Lightweight Kotlin/JSON serialization [The Apache Software License, Version 2.0] https://git.dorkbox.com/dorkbox/Json - Copyright 2023 + Copyright 2024 Dorkbox LLC Extra license information @@ -44,7 +44,7 @@ - SLF4J - Simple facade or abstraction for various logging frameworks [MIT License] https://www.slf4j.org - Copyright 2023 + Copyright 2024 QOS.ch - Updates - Software Update Management diff --git a/README.md b/README.md index 4f6f7b8..011b427 100644 --- a/README.md +++ b/README.md @@ -34,7 +34,7 @@ Maven Info com.dorkbox Config - 2.8 + 2.9 ``` @@ -44,7 +44,7 @@ Gradle Info ``` dependencies { ... - implementation("com.dorkbox:Config:2.8") + implementation("com.dorkbox:Config:2.9") } ``` diff --git a/build.gradle.kts b/build.gradle.kts index b681f40..1eaff57 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -27,7 +27,7 @@ plugins { id("com.dorkbox.GradleUtils") version "3.18" id("com.dorkbox.Licensing") version "2.28" id("com.dorkbox.VersionUpdate") version "2.8" - id("com.dorkbox.GradlePublish") version "1.20" + id("com.dorkbox.GradlePublish") version "1.22" kotlin("jvm") version "1.9.0" } @@ -36,7 +36,7 @@ object Extras { // set for the project const val description = "CLI, system properties, environment variables, or JSON text/file input processing." const val group = "com.dorkbox" - const val version = "2.8" + const val version = "2.9" // set as project.ext const val name = "Config" @@ -82,10 +82,10 @@ dependencies { api(kotlin("reflect")) api("com.dorkbox:Json:1.8") - api("com.dorkbox:OS:1.8") + api("com.dorkbox:OS:1.11") api("com.dorkbox:Updates:1.1") - implementation("org.slf4j:slf4j-api:2.0.7") + implementation("org.slf4j:slf4j-api:2.0.11") testImplementation("junit:junit:4.13.2") testImplementation("ch.qos.logback:logback-classic:1.4.5") diff --git a/src/dorkbox/config/ConfigProcessor.kt b/src/dorkbox/config/ConfigProcessor.kt index b583e95..4b2f09a 100644 --- a/src/dorkbox/config/ConfigProcessor.kt +++ b/src/dorkbox/config/ConfigProcessor.kt @@ -121,7 +121,7 @@ class ConfigProcessor /** * Gets the version number. */ - const val version = "2.8" + const val version = "2.9" init { // Add this project to the updates system, which verifies this class + UUID + version information