From f565ad216166a8072e32e22f04b58d29e698ac6f Mon Sep 17 00:00:00 2001 From: Amos Ng Date: Fri, 19 Jun 2020 03:28:37 +0800 Subject: [PATCH] Bumped version & CHANGELOG.md for RC19 --- CHANGELOG.md | 25 ++++++++++++++++--------- src/main/kotlin/mdnet/base/Constants.kt | 2 +- 2 files changed, 17 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index de4c70b..80ba57c 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,25 +6,31 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] ### Added -- [2020-06-16] Added WebUI versions to constants by [@RedMatriz]. -- [2020-06-16] Added WebUI PWA support for mobile by [@RedMatriz]. -- [2020-06-16] Added WebUI local data caching [@RedMatriz]. - ### Changed -- [2020-06-16] Reworked graceful shutdown [@carbotaniuman]. -- [2020-06-16] api/pastStats no longer called on load of WebUI (this shouldn't affect hits/misses), will be reimplemented later [@RedMatriz]. -- [2020-06-17] Revamped configuration & units by [@lflare]. ### Deprecated ### Removed ### Fixed -- [2020-06-17] Fixed minor typo with threads error logging by [@lflare]. ### Security +## [1.0.0-RC19] - 2020-06-18 +### Added +- [2020-06-16] Added WebUI versions to constants by [@RedMatriz]. +- [2020-06-16] Added WebUI PWA support for mobile by [@RedMatriz]. +- [2020-06-16] Added WebUI local data caching [@RedMatriz]. + +### Changed +- [2020-06-16] Reworked graceful shutdown [@carbotaniuman]. +- [2020-06-16] api/pastStats no longer called on load of WebUI (this shouldn't affect hits/misses), will be reimplemented later [@RedMatriz]. +- [2020-06-17] Revamped configuration & units by [@lflare]. + +### Fixed +- [2020-06-17] Fixed minor typo with threads error logging by [@lflare]. + ## [1.0.0-RC18] - 2020-06-16 ### Changed - [2020-06-16] Changed log level of response timings to INFO by [@lflare]. @@ -105,7 +111,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Fixed - [2020-06-11] Tweaked logging configuration to reduce log file sizes by [@carbotaniuman]. -[Unreleased]: https://gitlab.com/mangadex/mangadex_at_home/-/compare/1.0.0-rc18...HEAD +[Unreleased]: https://gitlab.com/mangadex/mangadex_at_home/-/compare/1.0.0-rc19...HEAD +[1.0.0-rc19]: https://gitlab.com/mangadex/mangadex_at_home/-/compare/1.0.0-rc18...1.0.0-rc19 [1.0.0-rc18]: https://gitlab.com/mangadex/mangadex_at_home/-/compare/1.0.0-rc17...1.0.0-rc18 [1.0.0-rc17]: https://gitlab.com/mangadex/mangadex_at_home/-/compare/1.0.0-rc16...1.0.0-rc17 [1.0.0-rc16]: https://gitlab.com/mangadex/mangadex_at_home/-/compare/1.0.0-rc15...1.0.0-rc16 diff --git a/src/main/kotlin/mdnet/base/Constants.kt b/src/main/kotlin/mdnet/base/Constants.kt index 4e00dc8..240951c 100644 --- a/src/main/kotlin/mdnet/base/Constants.kt +++ b/src/main/kotlin/mdnet/base/Constants.kt @@ -5,7 +5,7 @@ import com.google.gson.GsonBuilder import java.time.Duration object Constants { - const val CLIENT_BUILD = 8 + const val CLIENT_BUILD = 9 const val CLIENT_VERSION = "1.0" const val WEBUI_VERSION = "0.0.4" val MAX_AGE_CACHE: Duration = Duration.ofDays(14)