diff --git a/CHANGELOG.md b/CHANGELOG.md index 8272a83..da2ce80 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## [v0.3.1](https://github.com/pepabo/onecli/compare/v0.3.0...v0.3.1) - 2025-06-18 +- fix: suppress double error output by removing redundant error print in main.go by @buty4649 in https://github.com/pepabo/onecli/pull/17 + ## [v0.3.0](https://github.com/pepabo/onecli/compare/v0.2.0...v0.3.0) - 2025-06-18 - feat: add --detail flag to app list command by @buty4649 in https://github.com/pepabo/onecli/pull/6 - Add golangci-lint configuration and update version by @buty4649 in https://github.com/pepabo/onecli/pull/7 diff --git a/version/version.go b/version/version.go index ea79f7a..3971f5c 100644 --- a/version/version.go +++ b/version/version.go @@ -2,5 +2,5 @@ package version const ( Name string = "onecli" - Version string = "0.3.0" + Version string = "0.3.1" )