Skip to content

Commit ca6e94a

Browse files
committed
chore: release v0.2.2
1 parent 4fcaba6 commit ca6e94a

File tree

2 files changed

+22
-2
lines changed

2 files changed

+22
-2
lines changed

CHANGELOG.md

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,31 @@
22

33
## Unreleased
44

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+
524
## v0.2.1 (2022-04-03)
625

726
### Added
827

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>.
1030

1131
There are new alases for some of the options that the tools accepts:
1232

main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ func main() {
3838
3939
* go-global-update gofumpt gopls shfmt
4040
* go-global-update --dry-run`,
41-
Version: "v0.2.1",
41+
Version: "v0.2.2",
4242
ArgsUsage: "[binaries to update...]",
4343
UseShortOptionHandling: true,
4444
Flags: []cli.Flag{

0 commit comments

Comments
 (0)