From 8549cb70584abe7986adcfe04446a26c79a91824 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 17 Aug 2023 18:01:51 -0400 Subject: [PATCH] chore(main): release 0.3.0 (#7) Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- CHANGELOG.md | 20 ++++++++++++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 22 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a1d99c9..153225b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,25 @@ # Changelog +## [0.3.0](https://github.com/ysthakur/man-completions/compare/v0.2.1...v0.3.0) (2023-08-17) + + +### ⚠ BREAKING CHANGES + +* Rename Arg to Flag +* Move manpage-finding to main.rs + +### Features + +* Output (n parsed/total) statistic ([b89debf](https://github.com/ysthakur/man-completions/commit/b89debf1c077ee3ca95011c9f50e60242a31f6b3)) +* Read .bz2 ([02b5b27](https://github.com/ysthakur/man-completions/commit/02b5b27337e6c97ae6cd528b01071d47bd2ee9c0)) +* Untested Bash impl ([1f43bd4](https://github.com/ysthakur/man-completions/commit/1f43bd47c87fb1496176db9c40a53ad11785be43)) + + +### Code Refactoring + +* Move manpage-finding to main.rs ([d5a57cc](https://github.com/ysthakur/man-completions/commit/d5a57cc1c59d30efc52c500bf297f546e89a1b7e)) +* Rename Arg to Flag ([ec2dcce](https://github.com/ysthakur/man-completions/commit/ec2dcce0c57e3ac52883f2724f997b35859fa4b2)) + ## [0.2.1](https://github.com/ysthakur/man-completions/compare/v0.2.0...v0.2.1) (2023-08-11) diff --git a/Cargo.lock b/Cargo.lock index 6e5a470..7fa48ec 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -328,7 +328,7 @@ checksum = "b06a4cde4c0f271a446782e3eff8de789548ce57dbc8eca9292c27f4a42004b4" [[package]] name = "man-completions" -version = "0.2.1" +version = "0.3.0" dependencies = [ "anyhow", "assert_cmd", diff --git a/Cargo.toml b/Cargo.toml index c69e852..f860f0b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "man-completions" -version = "0.2.1" +version = "0.3.0" description = "Generate completions for Zsh and other shells from manpages" keywords = ["shell"] repository = "https://github.com/ysthakur/man-completions"