Skip to content

Commit

Permalink
bump to v1.10.23
Browse files Browse the repository at this point in the history
- v1.10.23
  - fix: unknown switch char not an error now
  - imp: refined gen zsh code, and gen shell codes
  - fea: support fish-shell completion generating now
  - fea: added root.`RunAsSubCommand`, treat 'app' as a synonym of 'app subcmd1 subcmd2'
  - imp/fix/fea: clarify the slice append or replace mode - SetNx & `SetNxOverwrite` for Option Store
  - fea: added `VendorHidden` field for when you wanna a never shown flag or command
  - fea: conf package - add `Serial`, `SerialString` for CI tool
  - imp: erase man1 folder after `--man`
  - fix/imp: prints description with color escaped, when multiline
  - fix: restore Match() but with new name MatchAndTest()
  - fix: high-order fn hold the older copy, so pass it by holding a pointer to original variable
  - imp: review most of the tests
  - NOTE: cleanup the deprecated codes [`cmd.NewFlagV`,`cmd.NewFlag`, `cmd.NewSubCommand`, ...]
  - fea: more completion supports
  • Loading branch information
hedzr committed Feb 16, 2022
1 parent ee4480c commit 80547eb
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 4 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,22 @@
## Versions


- v1.10.23
- fix: unknown switch char not an error now
- imp: refined gen zsh code, and gen shell codes
- fea: support fish-shell completion generating now
- fea: added root.`RunAsSubCommand`, treat 'app' as a synonym of 'app subcmd1 subcmd2'
- imp/fix/fea: clarify the slice append or replace mode - SetNx & `SetNxOverwrite` for Option Store
- fea: added `VendorHidden` field for when you wanna a never shown flag or command
- fea: conf package - add `Serial`, `SerialString` for CI tool
- imp: erase man1 folder after `--man`
- fix/imp: prints description with color escaped, when multiline
- fix: restore Match() but with new name MatchAndTest()
- fix: high-order fn hold the older copy, so pass it by holding a pointer to original variable
- imp: review most of the tests
- NOTE: cleanup the deprecated codes [`cmd.NewFlagV`,`cmd.NewFlag`, `cmd.NewSubCommand`, ...]
- fea: more completion supports

- v1.10.19
- temporary build for earlier testing
- confirmed: backward compatible with go1.12
Expand Down
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ and Bonus of [#cmdr](https://github.com/topics/cmdr) Series:

- v1.10.27 (WIP)

- v1.10.23 (WIP)
- v1.10.23
- fix: unknown switch char not an error now
- imp: refined gen zsh code, and gen shell codes
- fea: support fish-shell completion generating now
Expand All @@ -64,7 +64,8 @@ and Bonus of [#cmdr](https://github.com/topics/cmdr) Series:
- fix: restore Match() but with new name MatchAndTest()
- fix: high-order fn hold the older copy, so pass it by holding a pointer to original variable
- imp: review most of the tests
- NOTE: cleanup the deprecated codes
- NOTE: cleanup the deprecated codes [`cmd.NewFlagV`,`cmd.NewFlag`, `cmd.NewSubCommand`, ...]
- fea: more completion supports

- v1.10.19
- temporary build for earlier testing
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.10.19"
Version = "1.10.23"
// VersionInt const
VersionInt = 0x010a13
VersionInt = 0x010a17
)

0 comments on commit 80547eb

Please sign in to comment.