From 387909366a1ea88947cc7c431a454a75608577a5 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 9 Aug 2023 17:51:51 -0400 Subject: [PATCH] chore(main): release 0.2.0 (#5) Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- CHANGELOG.md | 24 ++++++++++++++++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 26 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7cd39bd..b719978 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,29 @@ # Changelog +## [0.2.0](https://github.com/ysthakur/man-completions/compare/v0.1.0...v0.2.0) (2023-08-09) + + +### Features + +* Add env_logger backend ([9c9633c](https://github.com/ysthakur/man-completions/commit/9c9633ce450cdba09af39110ab1b1d876669beba)) +* Add option to generate JSON ([204f4ad](https://github.com/ysthakur/man-completions/commit/204f4ad8a4547b3be43e1724593f654f75fd8a26)) +* Allow descriptions to be empty ([51175d1](https://github.com/ysthakur/man-completions/commit/51175d13180ab6eacc62be1fd9fb128bd854e5a2)) +* Allow marking commands as not subcommands ([89aaed1](https://github.com/ysthakur/man-completions/commit/89aaed1d73fca9ef5e4d3b80690f1171a58a18a8)) +* Detect and merge subcommands ([33c8ed5](https://github.com/ysthakur/man-completions/commit/33c8ed54a11e0ce099cad0d9eca6189162da436f)) +* Implement type 2 parser ([cef1e21](https://github.com/ysthakur/man-completions/commit/cef1e21546e837df7467985a493ef50504b3aaff)) +* include or exclude multiple commands ([77471e4](https://github.com/ysthakur/man-completions/commit/77471e4c151d83fa14131e99e8ec8fe9234d0192)) +* Make JSON output subcommands ([85887da](https://github.com/ysthakur/man-completions/commit/85887da3434a9ca9ea40506653281ee71786e1ae)) +* Simpler interface to parser ([3bf1f8d](https://github.com/ysthakur/man-completions/commit/3bf1f8d5f322cdd1fa1e72b8d2d20252a291e4a2)) + + +### Bug Fixes + +* conflicting option names ([7bb9b0f](https://github.com/ysthakur/man-completions/commit/7bb9b0f019eb46cc0fccbf0ba18a20648bd3d452)) +* fix Zsh subcommand comp functions ([245414b](https://github.com/ysthakur/man-completions/commit/245414b06bbe4230d9ef391ba25e37b1c8779a91)) +* Make order of options deterministic ([b3a76d4](https://github.com/ysthakur/man-completions/commit/b3a76d4af325489553e6dc5be921ee08b4606b52)) +* Remove .sp from descriptions ([140815f](https://github.com/ysthakur/man-completions/commit/140815f08a1f9f09f435ca8082a7659135a817a0)) +* Remove angle brackets ([f90b02b](https://github.com/ysthakur/man-completions/commit/f90b02b00947705d2bf8a066b3e53a12a0bd2882)) + ## 0.1.0 (2023-08-08) diff --git a/Cargo.lock b/Cargo.lock index 477d8a6..182ccd3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -295,7 +295,7 @@ checksum = "b06a4cde4c0f271a446782e3eff8de789548ce57dbc8eca9292c27f4a42004b4" [[package]] name = "man-completions" -version = "0.1.0" +version = "0.2.0" dependencies = [ "anyhow", "assert_cmd", diff --git a/Cargo.toml b/Cargo.toml index e465c24..e190a4a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "man-completions" -version = "0.1.0" +version = "0.2.0" description = "Generate completions for Zsh and other shells from manpages" keywords = ["shell"] repository = "https://github.com/ysthakur/man-completions"