Skip to content

Commit

Permalink
Bump version from 0.5.4 to 0.5.5
Browse files Browse the repository at this point in the history
  • Loading branch information
oalders committed Oct 29, 2024
1 parent d8e65b3 commit 1459e1b
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changes

## 0.5.5 - 2024-10-29

- Add version parsing for hugo

## 0.5.4 - 2024-08-16

- Run "command -v" via "sh -c" (GH#37) (Olaf Alders)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -1018,7 +1018,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/is@v0.5.0`
* `go install github.com/oalders/is@v0.5.5`
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 @@ -29,7 +29,7 @@ func main() {
kong.Name("is"),
kong.Description("an inspector for your environment"),
kong.UsageOnError(),
kong.Vars{"version": "0.5.4"},
kong.Vars{"version": "0.5.5"},
)

// 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.5.4" ]
[ "$output" = "0.5.5" ]
}

@test "is --help" {
Expand Down

0 comments on commit 1459e1b

Please sign in to comment.