Full release version 1.0.0 bump
This commit is contained in:
parent
10108bf09d
commit
81001ef01e
10
CHANGELOG.md
10
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]
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue