From d32395f16ea9ccdfa56ac76123144434b3fa928c Mon Sep 17 00:00:00 2001 From: carbotaniuman <41451839+carbotaniuman@users.noreply.github.com> Date: Tue, 26 Jan 2021 14:07:51 -0600 Subject: [PATCH] Update changelog --- CHANGELOG.md | 11 ++++++++--- src/main/kotlin/mdnet/Constants.kt | 2 +- 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7cfda2d..ece7858 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,12 +13,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Removed +### Fixed + +### Security + +## [2.0.0-rc3] - 2021-01-26 ### Fixed - [2021-01-25] Add `privileged: true` to mangadex-at-home service in docker-compose to enable use of IOUring for the dockerized version [@_tde9]. - [2021-01-26] Make updated config restart the webserver and apply changes [@carbotaniuman]. - [2021-01-26] Optimize some code to reduce allocations [@carbotaniuman]. - -### Security +- [2021-01-26] Fix stupid bug with `MessageDigest` [@carbotaniuman]. ## [2.0.0-rc2] - 2021-01-24 ### Added @@ -294,7 +298,8 @@ This release contains many breaking changes! Of note are the changes to the cach ### Fixed - [2020-06-11] Tweaked logging configuration to reduce log file sizes by [@carbotaniuman]. -[Unreleased]: https://gitlab.com/mangadex/mangadex_at_home/-/compare/2.0.0-rc2...HEAD +[Unreleased]: https://gitlab.com/mangadex/mangadex_at_home/-/compare/2.0.0-rc3...HEAD +[2.0.0-rc2]: https://gitlab.com/mangadex/mangadex_at_home/-/compare/2.0.0-rc2...2.0.0-rc3 [2.0.0-rc2]: https://gitlab.com/mangadex/mangadex_at_home/-/compare/2.0.0-rc1...2.0.0-rc2 [2.0.0-rc1]: https://gitlab.com/mangadex/mangadex_at_home/-/compare/1.2.4...2.0.0-rc1 [1.2.4]: https://gitlab.com/mangadex/mangadex_at_home/-/compare/1.2.3...1.2.4 diff --git a/src/main/kotlin/mdnet/Constants.kt b/src/main/kotlin/mdnet/Constants.kt index 9fb9ca9..43015ed 100644 --- a/src/main/kotlin/mdnet/Constants.kt +++ b/src/main/kotlin/mdnet/Constants.kt @@ -21,7 +21,7 @@ package mdnet import java.time.Duration object Constants { - const val CLIENT_BUILD = 22 + const val CLIENT_BUILD = 23 @JvmField val MAX_AGE_CACHE: Duration = Duration.ofDays(14)