Skip to content

Commit

Permalink
bump to v1.7.42 for a routine maintenance update
Browse files Browse the repository at this point in the history
  • Loading branch information
hedzr committed Jan 22, 2021
1 parent 1094a79 commit 273aa81
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 7 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## Versions

- v1.7.42
- routine maintenance


- v1.7.41
- fixed: flags after tail-args might not be recognized.
NOTE: in `app cmd1 cmd2 --a file1 file2 --c`, `--c` might be ignored.
Expand Down
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,9 @@ See our extras:
- english documentation NOT completed yet
- documentation at: https://hedzr.github.io/cmdr-docs/

- v1.7.42
- routine maintenance

- v1.7.41
- fixed: flags after tail-args might not be recognized.
NOTE: in `app cmd1 cmd2 --a file1 file2 --c`, `--c` might be ignored.
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.7.41"
Version = "1.7.42"
// VersionInt const
VersionInt = 0x010729
VersionInt = 0x01072a
)
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ require (
github.com/fsnotify/fsnotify v1.4.9
github.com/hedzr/cmdr-base v0.1.3
github.com/hedzr/log v0.3.9
github.com/hedzr/logex v1.3.9
github.com/hedzr/logex v1.3.10
golang.org/x/crypto v0.0.0-20190510104115-cbcb75029529
gopkg.in/hedzr/errors.v2 v2.1.3
gopkg.in/yaml.v3 v3.0.0-20210106172901-c476de37821d
Expand Down
7 changes: 3 additions & 4 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ github.com/hedzr/cmdr-base v0.1.3 h1:pMhVLP+Uxdhuf6BeasAC2OivMXJ3vxJHvFJHPQscQPU
github.com/hedzr/cmdr-base v0.1.3/go.mod h1:c3vMkHa5PME2P2W8lE3T9+JX12tq9tmCUt6lXbmt5kI=
github.com/hedzr/log v0.3.9 h1:TorDGf7KGOFttdPpwzLKgp1mfICTQ7rABf1FLKyX0y0=
github.com/hedzr/log v0.3.9/go.mod h1:E9WB0BC2AAX58UDlFC2zg9X19soXmTZRnXubWR04AiE=
github.com/hedzr/logex v1.3.9 h1:AZxfmRqG8UphOSJBUjP4kDFg8hYEjRvIasp7DTKMo5g=
github.com/hedzr/logex v1.3.9/go.mod h1:qqaIzCFQoKVf6H6qybzKF5xY3acGS9owgUx5FpsaKTs=
github.com/hedzr/logex v1.3.10 h1:8RENwOtLzz1OyIfTD1CXVqaLHjZ/kltj3k5mCkgxEF8=
github.com/hedzr/logex v1.3.10/go.mod h1:bct50vvclYNOjWft+ZyGdnXNKTLvUNaGgqJZ14uKqT0=
github.com/kisielk/gotool v1.0.0/go.mod h1:XhKaO+MFFWcvkIS/tQcRk01m1F5IRFswLeQ+oQHNcck=
github.com/konsorten/go-windows-terminal-sequences v1.0.3 h1:CE8S1cTafDpPvMhIxNJKvHsGVBgn1xWYf1NbHQhywc8=
github.com/konsorten/go-windows-terminal-sequences v1.0.3/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ=
Expand Down Expand Up @@ -63,6 +63,7 @@ golang.org/x/tools v0.0.0-20191029041327-9cc4af7d6b2c/go.mod h1:b+2E5dAYhXwXZwtn
golang.org/x/tools v0.0.0-20191029190741-b9c20aec41a5 h1:hKsoRgsbwY1NafxrwTs+k64bikrLBkAgPir1TNCj3Zs=
golang.org/x/tools v0.0.0-20191029190741-b9c20aec41a5/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo=
golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 h1:yhCVgyC4o1eVCa2tZl7eS0r+SDo693bJlVdllGtEeKM=
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 h1:qIbj1fsPNlZgppZ+VLlY7N33q108Sa+fhmuc+sWQYwY=
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
Expand All @@ -73,8 +74,6 @@ gopkg.in/natefinch/lumberjack.v2 v2.0.0 h1:1Lc07Kr7qY4U2YPouBjpCLxpiyxIVoxqXgkXL
gopkg.in/natefinch/lumberjack.v2 v2.0.0/go.mod h1:l0ndWWf7gzL7RNwBG7wST/UCcT4T24xpD6X8LsfU/+k=
gopkg.in/yaml.v2 v2.2.2 h1:ZCJp+EgiOT7lHqUV2J862kp8Qj64Jo6az82+3Td9dZw=
gopkg.in/yaml.v2 v2.2.2/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI=
gopkg.in/yaml.v2 v2.4.0 h1:D8xgwECY7CYvx+Y2n4sBz93Jn9JRvxdiyyo8CTfuKaY=
gopkg.in/yaml.v2 v2.4.0/go.mod h1:RDklbk79AGWmwhnvt/jBztapEOGDOx6ZbXqjP6csGnQ=
gopkg.in/yaml.v3 v3.0.0-20210106172901-c476de37821d h1:827r06Ng1EGlK/5Qb/mj+yHDj6pgKf5CjoX4v24FRJ0=
gopkg.in/yaml.v3 v3.0.0-20210106172901-c476de37821d/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
honnef.co/go/tools v0.0.1-2019.2.3 h1:3JgtbtFHMiCmsznwGVTUWbgGov+pVqnlf1dEJTNAXeM=
Expand Down

0 comments on commit 273aa81

Please sign in to comment.