Skip to content

Commit 64f402c

Browse files
Merge pull request #19 from AgoraIO/hotfix/v0.2.2
Hotfix/v0.2.2
2 parents 335325b + e37e0cd commit 64f402c

5 files changed

Lines changed: 15 additions & 6 deletions

File tree

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ body:
1818
attributes:
1919
label: CLI version
2020
description: Output of `agora --version`
21-
placeholder: "e.g. agora-cli 0.2.1 (commit abc1234, built 2026-05-20)"
21+
placeholder: "e.g. agora-cli 0.2.2 (commit abc1234, built 2026-05-26)"
2222
validations:
2323
required: true
2424

CHANGELOG.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,14 @@ Earlier entries pre-date this convention and only carry their version's compare
1515

1616
## [Unreleased]
1717

18+
## [0.2.2] - 2026-05-26
19+
20+
Python quickstart repository URL correction.
21+
22+
### Fixed
23+
24+
- Point the Python conversational AI quickstart clone URLs at `AgoraIO-Conversational-AI/agent-quickstart-python` instead of the retired `AgoraIO-Community` repository.
25+
1826
## [0.2.1] - 2026-05-20
1927

2028
Automation hardening, quickstart reliability fixes, agent introspection and MCP progress improvements, and release-artifact rename.
@@ -260,7 +268,8 @@ Set `AGORA_ALLOW_UPGRADE_IN_CI=1` only when a CI job intentionally needs to muta
260268
- Support machine-readable JSON output for automation and agent workflows.
261269
- Ship automated release packaging through GoReleaser, including cross-platform archives, Linux packages, Homebrew, Scoop, npm wrapper packages, Docker images, and install scripts.
262270

263-
[Unreleased]: https://github.com/AgoraIO/cli/compare/v0.2.1...HEAD
271+
[Unreleased]: https://github.com/AgoraIO/cli/compare/v0.2.2...HEAD
272+
[0.2.2]: https://github.com/AgoraIO/cli/compare/v0.2.1...v0.2.2
264273
[0.2.1]: https://github.com/AgoraIO/cli/compare/v0.2.0...v0.2.1
265274
[0.2.0]: https://github.com/AgoraIO/cli/compare/v0.1.9...v0.2.0
266275
[0.1.9]: https://github.com/AgoraIO/cli/compare/v0.1.8...v0.1.9

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -310,7 +310,7 @@ GitHub Actions are configured for:
310310

311311
Release workflow behavior:
312312

313-
- a pushed tag matching `v*` (for example `v0.2.1`) triggers the release workflow
313+
- a pushed tag matching `v*` (for example `v0.2.2`) triggers the release workflow
314314
- the workflow runs tests, builds release binaries, packages them, and publishes a GitHub release automatically
315315
- release artifacts include checksums
316316

RELEASING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ Releases are fully automated via GoReleaser. Pushing a `v*` tag is the only manu
55
## Release
66

77
```bash
8-
git tag v0.2.1
9-
git push origin v0.2.1
8+
git tag v0.2.2
9+
git push origin v0.2.2
1010
```
1111

1212
The release workflow (`.github/workflows/release.yml`) then:

internal/cli/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import "fmt"
55
// Build-time injected version variables. These are populated by ldflags at
66
// release time:
77
//
8-
// go build -ldflags '-X github.com/.../internal/cli.version=v0.2.1
8+
// go build -ldflags '-X github.com/.../internal/cli.version=v0.2.2
99
// -X github.com/.../internal/cli.commit=abc1234
1010
// -X github.com/.../internal/cli.date=2026-05-05'
1111
//

0 commit comments

Comments
 (0)