Skip to content

Commit 0732412

Browse files
committed
Bump version to 0.5.2
1 parent 084aafd commit 0732412

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ go install github.com/oalders/debounce@latest
8585
or for a specific version:
8686

8787
```bash
88-
go install github.com/oalders/debounce@v0.5.0
88+
go install github.com/oalders/debounce@v0.5.2
8989
```
9090

9191
### Using Ubi
@@ -261,7 +261,7 @@ Prints current version.
261261

262262
```bash
263263
debounce --version
264-
0.5.0
264+
0.5.2
265265
```
266266

267267
### --help

main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import (
1111
"github.com/oalders/debounce/types"
1212
)
1313

14-
const vstring = "0.5.0"
14+
const vstring = "0.5.2"
1515

1616
type CLI struct { //nolint:govet
1717
Debug bool `help:"Print debugging info to screen"`

test/cli.bats

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ usage_message="Usage: debounce <quantity> <unit> <command>"
77

88
@test "Check version output" {
99
result="$(./bin/debounce --version)"
10-
[ "$result" == "0.5.0" ]
10+
[ "$result" == "0.5.2" ]
1111
}
1212

1313
@test "Check error message when not enough arguments are provided" {

0 commit comments

Comments
 (0)