From e686dccfade5f24f9db6fb5e868d3e21939cdeaa Mon Sep 17 00:00:00 2001 From: Casper Verhaar Date: Sat, 25 Jun 2022 15:36:30 +0200 Subject: [PATCH] Release `0.5.0` --- CHANGELOG.md | 9 ++++++--- Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 8 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e82d282..f73574e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,9 +4,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). ## [Unreleased] + +## [0.5.0] - 2022-06-25 ### Added -- Add `--limit` to limit number of posts per feed -- Add `--count-only` to only show number of posts per feed +- Add `--limit` to limit number of posts per feed by @KnapSac in https://github.com/KnapSac/gobbler/pull/15 +- Add `--count-only` to only show number of posts per feed by @KnapSac in https://github.com/KnapSac/gobbler/pull/15 ### Changed - Switch to using `clap` derive macro by @KnapSac in https://github.com/KnapSac/gobbler/pull/14 @@ -39,7 +41,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). - Support for listing the items in a RSS feed in the last specified number of weeks. - Support using `gobbler` in a shell profile. -[Unreleased]: https://github.com/KnapSac/gobbler/compare/v0.4.0...HEAD +[Unreleased]: https://github.com/KnapSac/gobbler/compare/v0.5.0...HEAD +[0.5.0]: https://github.com/KnapSac/gobbler/compare/v0.4.0...v0.5.0 [0.4.0]: https://github.com/KnapSac/gobbler/compare/v0.3.0...v0.4.0 [0.3.0]: https://github.com/KnapSac/gobbler/compare/v0.2.1...v0.3.0 [0.2.1]: https://github.com/KnapSac/gobbler/compare/v0.0.2...v0.2.1 diff --git a/Cargo.lock b/Cargo.lock index b7e0b27..331d38d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -136,7 +136,7 @@ checksum = "e78d4f1cc4ae33bbfc157ed5d5a5ef3bc29227303d595861deb238fcec4e9457" [[package]] name = "gobbler" -version = "0.4.0" +version = "0.5.0" dependencies = [ "chrono", "clap", diff --git a/Cargo.toml b/Cargo.toml index 56bfedb..da61f84 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "gobbler" -version = "0.4.0" +version = "0.5.0" edition = "2021" license = "MIT OR Apache-2.0"