Skip to content

Commit

Permalink
bump to v1.9.6
Browse files Browse the repository at this point in the history
- v1.9.6
  - fixed: incorrect rune count at calc escaped text in help screen.
    > help screen might not be proper in a small terminal window
  - remove deprecated internal options: `--help-zsh`, `--help-bash`
  - add new option `--man` to enter manpage entry of a sub-command, try `fluent ms tags ls --man`. [linux/darwin only]
  - fixed: Flag.Action return err but cmdr.Exec no breaking its flow.
  • Loading branch information
hedzr committed Dec 11, 2021
1 parent 0a362b2 commit 88859fd
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,12 @@

## Versions

- v1.9.5
- v1.9.6
- fixed: incorrect rune count at calc escaped text in help screen.
> help screen might not be proper in a small terminal window
- remove deprecated internal options: `--help-zsh`, `--help-bash`
- add new option `--man` to enter manpage entry of a sub-command, try `fluent ms tags ls --man`. [linux/darwin only]
- fixed: Flag.Action return err but cmdr.Exec no breaking its flow.

- v1.9.5
- **improved**: zsh completion generator (`app gen sh --zsh/--auto`)
Expand Down
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,9 @@ and Bonus of [#cmdr](https://github.com/topics/cmdr) Series:
- english documentation NOT completed yet
- documentation at: https://hedzr.github.io/cmdr-docs/

- v1.9.6 (WIP)
- v1.9.7 (WIP)

- v1.9.6
- fixed: incorrect rune count at calc escaped text in help screen.
- remove deprecated internal options: `--help-zsh`, `--help-bash`
- add new option `--man` to enter manpage entry of a sub-command, try `fluent ms tags ls --man`. [linux/darwin only]
Expand Down
4 changes: 2 additions & 2 deletions doc.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const (
// AppName const
AppName = "cmdr"
// Version const
Version = "1.9.5"
Version = "1.9.6"
// VersionInt const
VersionInt = 0x010905
VersionInt = 0x010906
)

0 comments on commit 88859fd

Please sign in to comment.