diff --git a/CHANGELOG.md b/CHANGELOG.md index 5a759f1..4478916 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,7 +8,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added ### Changed -- [2020-06-22] Fix incorrect `config.sample.json` naming to `settings.sample.json` by [@lflare] ### Deprecated @@ -18,6 +17,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Security +## [1.0.0] - 2020-06-22 +### Added +- [2020-06-22] Repository clean-up by [@carbotaniuman] +- [2020-06-22] Comments added to JSON configuration file by [@carbotaniuman] + +### Changed +- [2020-06-22] Fix incorrect `config.sample.json` naming to `settings.sample.json` by [@lflare] +- [2020-06-22] Logging statements improved by [@carbotaniuman] + ## [1.0.0-RC22] - 2020-06-22 ### Added - [2020-06-20] Added `graceful_shutdown_wait_seconds` client setting by [@carbotaniuman] diff --git a/src/main/kotlin/mdnet/base/Constants.kt b/src/main/kotlin/mdnet/base/Constants.kt index 249d29c..d160c45 100644 --- a/src/main/kotlin/mdnet/base/Constants.kt +++ b/src/main/kotlin/mdnet/base/Constants.kt @@ -24,8 +24,8 @@ import com.fasterxml.jackson.module.kotlin.jacksonObjectMapper import java.time.Duration object Constants { - const val CLIENT_BUILD = 12 - const val CLIENT_VERSION = "1.0" + const val CLIENT_BUILD = 13 + const val CLIENT_VERSION = "1.0.0" const val WEBUI_VERSION = "0.1.1" val MAX_AGE_CACHE: Duration = Duration.ofDays(14) val JACKSON: ObjectMapper = jacksonObjectMapper().configure(JsonParser.Feature.ALLOW_COMMENTS, true)