From 2315a07601ae5fa0bb32d2da81d4e5183583fb34 Mon Sep 17 00:00:00 2001 From: carbotaniuman <41451839+carbotaniuman@users.noreply.github.com> Date: Tue, 11 Aug 2020 14:46:10 -0500 Subject: [PATCH] Wowzas --- CHANGELOG.md | 19 ++++++++++++++----- src/main/kotlin/mdnet/base/Constants.kt | 2 +- 2 files changed, 15 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index de15bda..aa653bf 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,22 +6,30 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] ### Added -- [2020-08-11] New CLI for specifying database location, cache folder, and settings [@carbotaniuman]. ### Changed -- [2020-08-11] Change logging defaults [@carbotaniuman]. ### Deprecated ### Removed +### Fixed + +### Security + +## [1.2.1] - 2020-08-11 +### Added +- [2020-08-11] New CLI for specifying database location, cache folder, and settings [@carbotaniuman]. + +### Changed +- [2020-08-11] Change logging defaults [@carbotaniuman]. + ### Fixed - [2020-08-11] Bugs relating to `settings.json` changes [@carbotaniuman]. - [2020-08-11] Logs taking up an absurd amount of space [@carbotaniuman]. - [2020-08-11] Random crashes for no reason [@carbotaniuman]. -- [2020-08-11] SQLException is noww properly handled [@carbotaniuman]. +- [2020-08-11] SQLException is now properly handled [@carbotaniuman]. -### Security ## [1.2.0] - 2020-08-10 ### Added @@ -226,7 +234,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.2.0...HEAD +[Unreleased]: https://gitlab.com/mangadex/mangadex_at_home/-/compare/1.2.1...HEAD +[1.2.1]: https://gitlab.com/mangadex/mangadex_at_home/-/compare/1.2.0...1.2.1 [1.2.0]: https://gitlab.com/mangadex/mangadex_at_home/-/compare/1.1.5...1.2.0 [1.1.5]: https://gitlab.com/mangadex/mangadex_at_home/-/compare/1.1.4...1.1.5 [1.1.4]: https://gitlab.com/mangadex/mangadex_at_home/-/compare/1.1.3...1.1.4 diff --git a/src/main/kotlin/mdnet/base/Constants.kt b/src/main/kotlin/mdnet/base/Constants.kt index 963661f..4978e0e 100644 --- a/src/main/kotlin/mdnet/base/Constants.kt +++ b/src/main/kotlin/mdnet/base/Constants.kt @@ -21,7 +21,7 @@ package mdnet.base import java.time.Duration object Constants { - const val CLIENT_BUILD = 17 + const val CLIENT_BUILD = 18 @JvmField val MAX_AGE_CACHE: Duration = Duration.ofDays(14)