diff --git a/CHANGELOG.md b/CHANGELOG.md index 66a91c01..a444d656 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,8 @@ To publish a new release run `scripts/release` from the project directory. ## [Unreleased] +## [0.21.0] – 2020-08-12 + ### Added - Add `--paginate` flag to paginate the output of mdcat (see [GH-152]); with this flag mdcat sends it output to `less -R` or any alternative pager set in `$MDCAT_PAGER` or `$PAGER`. @@ -408,4 +410,5 @@ To publish a new release run `scripts/release` from the project directory. [0.18.4]: https://github.com/lunaryorn/mdcat/compare/mdcat-0.18.3...mdcat-0.18.4 [0.19.0]: https://github.com/lunaryorn/mdcat/compare/mdcat-0.18.4...mdcat-0.19.0 [0.20.0]: https://github.com/lunaryorn/mdcat/compare/mdcat-0.19.0...mdcat-0.20.0 -[Unreleased]: https://github.com/lunaryorn/mdcat/compare/mdcat-0.20.0...HEAD +[0.21.0]: https://github.com/lunaryorn/mdcat/compare/mdcat-0.20.0...mdcat-0.21.0 +[Unreleased]: https://github.com/lunaryorn/mdcat/compare/mdcat-0.21.0...HEAD diff --git a/Cargo.lock b/Cargo.lock index 7c28810b..f922c8ba 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -651,7 +651,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "mdcat" -version = "0.20.0" +version = "0.21.0" dependencies = [ "ansi_term 0.12.1 (registry+https://github.com/rust-lang/crates.io-index)", "anyhow 1.0.31 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/Cargo.toml b/Cargo.toml index 0b018acd..502f71a7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,7 +6,7 @@ homepage = "https://github.com/lunaryorn/mdcat" repository = "https://github.com/lunaryorn/mdcat" documentation = "https://docs.rs/mdcat" keywords = ["markdown", "less", "cat"] -version = "0.20.0" +version = "0.21.0" categories = ["command-line-utilities", "text-processing"] license = "MPL-2.0" authors = ["Sebastian Wiesner "]