From 3eb47c0b0f1850aad2833489eddd84d0119e3d34 Mon Sep 17 00:00:00 2001 From: Olaf Alders Date: Sat, 8 Jun 2024 20:25:11 -0400 Subject: [PATCH] Bump version from 0.4.3 to 0.5.0 --- CHANGELOG.md | 3 +++ README.md | 2 +- main.go | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 301f6b5..d84dfd0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changes +## 0.5.0 - 2024-06-08 + +- Add fso subcommand (GH#32) (Olaf Alders) - Fix neovim nightly version parsing (GH#28) ## 0.4.3 - 2024-03-05 diff --git a/README.md b/README.md index f4b2855..ebddd1b 100644 --- a/README.md +++ b/README.md @@ -991,7 +991,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.4.3` + * `go install github.com/oalders/is@v0.5.0` 1. Use [ubi](https://github.com/houseabsolute/ubi) ```bash diff --git a/main.go b/main.go index 61fcb34..f9a8066 100644 --- a/main.go +++ b/main.go @@ -23,7 +23,7 @@ func main() { ctx := kong.Parse(&API, kong.Vars{ - "version": "0.4.3", + "version": "0.5.0", }) runContext := types.Context{Debug: API.Debug} err := ctx.Run(&runContext)