From f94328284ed7da937b0c803a7670c09e8ff41693 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Simon=20Gori=C4=8Dar?= Date: Mon, 7 Aug 2023 17:47:30 +0200 Subject: [PATCH] Bump `euphony` to `2.1.0` --- CHANGELOG.md | 20 +++++++++++++++++++- Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 21 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3c55943..af971f1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,22 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). --- +## [2.1.0] - 2023-08-07 + +### Added +- Ability to create distinct (timestamped) log files by using the `{DATETIME}` placeholder in the `logging.default_log_output_path` configuration option. +- When the user cancels a transcoding operation, partially transcoded files will be deleted and the user will be warned that the album didn't complete. +- Display validity of library paths in the `show-config` command. + +### Changed +- Improved placeholder (`{LIBRARY_BASE}`, `{DATETIME}`, etc.) documentation in the configuration file template (`data/configuration.TEMPLATE.toml`). + +### Fixed +- Album and file queue now properly collapse leading finished items when there is not enough space to display all queue items. +- Create any missing log file path parent directories (`default_log_output_path` / `--log-to-file`). + + + ## [2.0.0] - 2023-08-06 **This version includes breaking changes.** @@ -91,7 +107,9 @@ Contains features for validation and transcoding of the libraries -[Unreleased]: https://github.com/DefaultSimon/euphony/compare/v1.3.1...HEAD +[Unreleased]: https://github.com/DefaultSimon/euphony/compare/v2.1.0...HEAD +[2.1.0]: https://github.com/DefaultSimon/euphony/compare/v2.0.0...v2.1.0 +[2.0.0]: https://github.com/DefaultSimon/euphony/compare/v1.3.1...v2.0.0 [1.3.1]: https://github.com/DefaultSimon/euphony/compare/v1.3.0...v1.3.1 [1.3.0]: https://github.com/DefaultSimon/euphony/compare/v1.2.0...v1.3.0 [1.2.0]: https://github.com/DefaultSimon/euphony/compare/v1.1.0...v1.2.0 diff --git a/Cargo.lock b/Cargo.lock index f4ca319..68bcbad 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -326,7 +326,7 @@ dependencies = [ [[package]] name = "euphony" -version = "2.0.0" +version = "2.1.0" dependencies = [ "ansi-to-tui", "chrono", diff --git a/Cargo.toml b/Cargo.toml index 066b316..f926148 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "euphony" -version = "2.0.0" +version = "2.1.0" edition = "2021" description = "A personal music library transcode manager." readme = "README.md"