diff --git a/CHANGELOG.md b/CHANGELOG.md index d74af20..826b065 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## [0.5.2](https://github.com/ysthakur/gen-completions/compare/v0.5.1...v0.5.2) (2023-12-30) + + +### Features + +* Generate descriptions for strings arg type for nu ([c70d189](https://github.com/ysthakur/gen-completions/commit/c70d1891ecfe9e51895e016298c77d624bc20114)) +* Make Nushell try generating types ([898537b](https://github.com/ysthakur/gen-completions/commit/898537bbc267007e2efb47848eea18140ad7e9e8)) +* Parse arg types ([0417e65](https://github.com/ysthakur/gen-completions/commit/0417e65cf76200ab891a4fc19ea99f8771475cd0)) + + +### Bug Fixes + +* Fix duplicate flag span ([e486366](https://github.com/ysthakur/gen-completions/commit/e4863660baecb998d2f046f4552ad6b0a4834d32)) + ## [0.5.1](https://github.com/ysthakur/man-completions/compare/v0.5.0...v0.5.1) (2023-12-25) diff --git a/Cargo.lock b/Cargo.lock index 52a8aa2..93803aa 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -305,7 +305,7 @@ dependencies = [ [[package]] name = "gen-completions" -version = "0.5.1" +version = "0.5.2" dependencies = [ "assert_cmd", "bzip2", diff --git a/Cargo.toml b/Cargo.toml index 92932ac..d229250 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "gen-completions" -version = "0.5.1" +version = "0.5.2" description = "Generate Bash/Zsh completions from manpages or JSON/KDL files" keywords = ["shell"] categories = ["command-line-utilities"]