File tree Expand file tree Collapse file tree 2 files changed +22
-2
lines changed Expand file tree Collapse file tree 2 files changed +22
-2
lines changed Original file line number Diff line number Diff line change 2
2
3
3
## Unreleased
4
4
5
+ ## v0.2.2 (2022-04-03)
6
+
7
+ ### Fixed
8
+
9
+ - Allow combining short options in a single CLI argument
10
+ < https://github.com/Gelio/go-global-update/pull/17 > .
11
+
12
+ Short flags can be used in a single CLI argument, POSIX-style:
13
+
14
+ ``` sh
15
+ go-global-update -nv
16
+ ```
17
+
18
+ is equivalent to
19
+
20
+ ``` sh
21
+ go-global-update -n -v
22
+ ```
23
+
5
24
## v0.2.1 (2022-04-03)
6
25
7
26
### Added
8
27
9
- - Short aliases for ` --dry-run ` and ` --verbose ` flags.
28
+ - Short aliases for ` --dry-run ` and ` --verbose ` flags
29
+ < https://github.com/Gelio/go-global-update/pull/16 > .
10
30
11
31
There are new alases for some of the options that the tools accepts:
12
32
Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ func main() {
38
38
39
39
* go-global-update gofumpt gopls shfmt
40
40
* go-global-update --dry-run` ,
41
- Version : "v0.2.1 " ,
41
+ Version : "v0.2.2 " ,
42
42
ArgsUsage : "[binaries to update...]" ,
43
43
UseShortOptionHandling : true ,
44
44
Flags : []cli.Flag {
You can’t perform that action at this time.
0 commit comments