diff --git a/.github/workflows/publish-release.yml b/.github/workflows/publish-release.yml index 5caeefd..ea77274 100644 --- a/.github/workflows/publish-release.yml +++ b/.github/workflows/publish-release.yml @@ -8,6 +8,7 @@ on: push: tags: - "v*" + workflow_dispatch: {} permissions: contents: read diff --git a/.goreleaser.yml b/.goreleaser.yml index a7a2749..3573343 100644 --- a/.goreleaser.yml +++ b/.goreleaser.yml @@ -84,6 +84,7 @@ homebrew_casks: owner: anthropics name: homebrew-tap token: "{{ .Env.HOMEBREW_TAP_GITHUB_TOKEN }}" + branch: "ant-{{.Version}}" pull_request: enabled: true homepage: anthropic.com diff --git a/.release-please-manifest.json b/.release-please-manifest.json index d0ab664..d43a621 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "1.2.0" + ".": "1.2.1" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index e0bcf6e..cede030 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## 1.2.1 (2026-04-16) + +Full Changelog: [v1.2.0...v1.2.1](https://github.com/anthropics/anthropic-cli/compare/v1.2.0...v1.2.1) + +### Bug Fixes + +* **goreleaser:** correct pull request config ([5d6c9ae](https://github.com/anthropics/anthropic-cli/commit/5d6c9aeb2f5552d9bf698b9a7f5b9e8c36c001bd)) + + +### Chores + +* **ci:** support manually triggering release workflow ([9f53a96](https://github.com/anthropics/anthropic-cli/commit/9f53a96d298248c45822057a6c53ec6dd3e3f768)) + ## 1.2.0 (2026-04-16) Full Changelog: [v1.1.0...v1.2.0](https://github.com/anthropics/anthropic-cli/compare/v1.1.0...v1.2.0) diff --git a/pkg/cmd/version.go b/pkg/cmd/version.go index a9464c4..0f567fe 100644 --- a/pkg/cmd/version.go +++ b/pkg/cmd/version.go @@ -2,4 +2,4 @@ package cmd -const Version = "1.2.0" // x-release-please-version +const Version = "1.2.1" // x-release-please-version