Skip to content

Commit e378979

Browse files
committed
changelog
1 parent 56c5277 commit e378979

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
11
Change Log
22
========================================
33

4+
v0.7.2 - 2022-01-28
5+
----------------------------------------
6+
7+
- Add support for stdin
8+
- Refactor catch_all (internal)
9+
- Refactor command scopes
10+
- Fix autocomplete in ZSH
11+
12+
413
v0.7.1 - 2021-11-17
514
----------------------------------------
615

examples/completions/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ Options:
172172
# Modifying it manually is not recommended
173173
_cli_completions() {
174174
local cur=${COMP_WORDS[COMP_CWORD]}
175-
local comp_line="${COMP_WORDS[*]:1}"
175+
local comp_line="${COMP_WORDS[@]:1}"
176176

177177
case "$comp_line" in
178178
'completions'*) COMPREPLY=($(compgen -W "--help -h" -- "$cur")) ;;

0 commit comments

Comments
 (0)