From 5395901b2d1d4a8deb1dd2c169d32162cdf95be6 Mon Sep 17 00:00:00 2001 From: Obinna Odirionye Date: Mon, 9 Feb 2026 01:52:44 +0100 Subject: [PATCH] chore: prepare release v0.11.0 Add CHANGELOG.md with release notes and update README install example to reflect v0.11.0. --- CHANGELOG.md | 27 +++++++++++++++++++++++++++ README.md | 4 ++-- 2 files changed, 29 insertions(+), 2 deletions(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..111f34d --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,27 @@ +# Changelog + +## v0.11.0 + +### Breaking Changes +- **Helm v2 support removed** — all Helm v2 code and references have been dropped + +### Features +- **Helm v4 support** — dual Helm v3/v4 API support using wrapper pattern with runtime version detection (#226) +- **arm64/aarch64 architecture support** added to builds and install script +- Separate plugin manifests for Helm v3 and v4, with install hook auto-detection + +### Dependencies +- Go 1.25 +- Helm v3.18.5 (#230) +- Helm v4.0.4 +- cobra 1.8.1 +- protobuf 1.33.0 +- Removed unused `docker/docker` indirect dependency + +### Fixes +- CVE-2023-2253 fixed in golang deps (#197) +- GoReleaser deprecation warning resolved + +### Other +- README refactored for clearer install instructions (#214) +- Acceptance tests updated for Helm v3 and v4 diff --git a/README.md b/README.md index a383bb7..c74252a 100644 --- a/README.md +++ b/README.md @@ -15,8 +15,8 @@ $ helm plugin install https://github.com/chartmuseum/helm-push This will download and install the appropriate release binary from GitHub. Upon successful installation, you should see output similar to: ``` -Downloading and installing helm-push v0.10.1 ... -https://github.com/chartmuseum/helm-push/releases/download/v0.10.1/helm-push_0.10.1_darwin_amd64.tar.gz +Downloading and installing helm-push v0.11.0 ... +https://github.com/chartmuseum/helm-push/releases/download/v0.11.0/helm-push_0.11.0_darwin_amd64.tar.gz Installed plugin: cm-push ```