Skip to content

Commit

Permalink
bump version to v1.9.2
Browse files Browse the repository at this point in the history
  • Loading branch information
hedzr committed Nov 24, 2021
1 parent 8f28ad7 commit 957bb59
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 5 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,16 @@

## Versions

- v1.9.2:
- fixed: parsing not stop while a should-be-stopped flag (such as --version) found
- fixed: incorrect usage line at top level help screen
- improved: better toggle-group show in help screen
new style for ToggleGroup items: A unicode character '⬡'(U+2B21) as the prefix of the option description. (see [here](https://github.com/hedzr/cmdr/issues/1#issuecomment-968247546))
- improved: better toggle-group choicer in help screen
1. '⬢'(U+2B22) & '⬡'(U+2B21) for the default choicer style (named as `hexagon`),
1. '▸'(U+25B8) & '▹'(U+25B9) as another one (`triangle-right`),
- improved: `WithToggleGroupChoicerStyle(style)` and `WithToggleGroupChoicerNewStyle(style, trueChoicer, falseChoicer)`.

- v1.9.1:
- A public template repo may simplify your new CLI app: [**cmdr-go-starter**](https://github.com/hedzr/cmdr-go-starter).
- crashed at an elder fsnotify on macOS, with go1.17
Expand Down
11 changes: 8 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,12 +49,17 @@ 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.2 (WIP)
- v1.9.3 (WIP)

- v1.9.2
- fixed: parsing not stop while a should-be-stopped flag (such as --version) found
- fixed: incorrect usage line at top level help screen
- improved: better toggle-group show in help screen
new style for ToggleGroup items: A unicode character '⬡' as the prefix of the option description. (see [here](https://github.com/hedzr/cmdr/issues/1#issuecomment-968247546))
-
new style for ToggleGroup items: A unicode character '⬡'(U+2B21) as the prefix of the option description. (see [here](https://github.com/hedzr/cmdr/issues/1#issuecomment-968247546))
- improved: better toggle-group choicer in help screen
1. '⬢'(U+2B22) & '⬡'(U+2B21) for the default choicer style (named as `hexagon`),
1. '▸'(U+25B8) & '▹'(U+25B9) as another one (`triangle-right`),
- improved: `WithToggleGroupChoicerStyle(style)` and `WithToggleGroupChoicerNewStyle(style, trueChoicer, falseChoicer)`.

- v1.9.1:
- A public template repo may simplify your new CLI app: [**cmdr-go-starter**](https://github.com/hedzr/cmdr-go-starter).
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.1"
Version = "1.9.2"
// VersionInt const
VersionInt = 0x010901
VersionInt = 0x010902
)

0 comments on commit 957bb59

Please sign in to comment.