diff --git a/CHANGELOG.md b/CHANGELOG.md index 7953490..95b6fe5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,11 +7,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] -### Added - -- Error reporting now includes details on which post errored and what the error was specifically. -- Post's date now defaults to publication date and fallbacks to the update date - ### In Progress - [Styling HTML output](https://github.com/AntoniosBarotsis/Rss2Email/issues/6) @@ -20,9 +15,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 Explore the idea of letting the user inject their own CSS through environment variables and predefined "themes". +- [Add post descriptions](https://github.com/AntoniosBarotsis/Rss2Email/issues/38) + +## [1.0.1] - 2023-01-03 + +### Added + +- Error reporting now includes details on which post errored and what the error was specifically. +- Post's date now defaults to `publication` date and fallbacks to the `update` date + ## [1.0.0] - 2022-12-06 Initial release 🎉 -[unreleased]: https://github.com/AntoniosBarotsis/rss2email/compare/v1.0.0...HEAD +[unreleased]: https://github.com/AntoniosBarotsis/rss2email/compare/v1.0.1...HEAD +[1.0.1]: https://github.com/AntoniosBarotsis/rss2email/releases/tag/v1.0.1 [1.0.0]: https://github.com/AntoniosBarotsis/rss2email/releases/tag/v1.0.0 diff --git a/Cargo.lock b/Cargo.lock index a33c44e..47e3534 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1063,7 +1063,7 @@ dependencies = [ [[package]] name = "rss2email" -version = "1.0.0" +version = "1.0.1" dependencies = [ "chrono", "criterion", diff --git a/Cargo.toml b/Cargo.toml index e0fe1fb..1bf8cde 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,7 +5,7 @@ license = "GPL-3.0" repository = "https://github.com/AntoniosBarotsis/Rss2Email" keywords = ["rss", "atom", "email"] readme = "README.md" -version = "1.0.0" +version = "1.0.1" edition = "2021" [[bin]]