Skip to content

Commit

Permalink
Bump version from 0.6.0 to 0.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
oalders committed Jan 27, 2025
1 parent bff55e9 commit 2a50390
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Changes

## 0.6.1 - 2025-01-27

- Allow for empty string comparisons via "eq" and "ne" in "is var". e.g.
- is var FOO eq ""
- is var FOO ne ""
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -1115,7 +1115,7 @@ Choose from the following options to install `is`.
1. [Download a release](https://github.com/oalders/is/releases)
1. Use `go install`
* `go install github.com/oalders/is@latest`
* `go install github.com/oalders/[email protected].0`
* `go install github.com/oalders/[email protected].1`
1. Use [ubi](https://github.com/houseabsolute/ubi)

```bash
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ func main() {
kong.Name("is"),
kong.Description("an inspector for your environment"),
kong.UsageOnError(),
kong.Vars{"version": "0.6.0"},
kong.Vars{"version": "0.6.1"},
)

// Run kongplete.Complete to handle completion requests
Expand Down
2 changes: 1 addition & 1 deletion test/is.bats
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
@test "is --version" {
run ./is --version
[ "$status" -eq 0 ]
[ "$output" = "0.6.0" ]
[ "$output" = "0.6.1" ]
}

@test "is --help" {
Expand Down

0 comments on commit 2a50390

Please sign in to comment.