Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 14 additions & 2 deletions .roo/commands/release.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,16 +95,28 @@ mode: code
- If the release includes translated README or package-localization updates, include those files in the same PR.
- Let the release validation workflow and normal PR checks run before merge.

12. After the release PR is merged, create the release tag on the resulting `main` commit:
12. After the release PR is merged, stop for a release review on the resulting `main` commit.

```bash
git switch main
git pull origin main
git rev-parse --short HEAD
```

- Review the merged release state before any publish step.
- Confirm that `src/package.json`, `CHANGELOG.md`, `src/CHANGELOG.md`, and the Marketplace-facing `README.md` all reflect the intended release.
- Check that the release PR checks passed and that the merged commit is the one you want to ship.
- Share that review summary with the user and wait for explicit confirmation before creating the tag.
- Do not create the tag or trigger publishing until the user says to proceed.

13. Only after explicit confirmation, create the release tag on that reviewed `main` commit:

```bash
git tag v[version]
Comment thread
roomote[bot] marked this conversation as resolved.
Outdated
git push origin v[version]
```

13. The stable publish workflow runs from the `v[version]` tag.
14. The stable publish workflow runs from the `v[version]` tag.

- Do not create the tag before the release PR is merged.
- The publish workflow validates that the tag version matches `src/package.json`.
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
You can find a quick guide for migrating from Roo Code to Zoo Code in the [Roo→Zoo migration guide](https://docs.zoocode.dev/roo-to-zoo-migration). We plan to try and help users as they transition over, we have our [Reddit](https://www.reddit.com/r/ZooCode) and [Discord](https://discord.gg/VxfP4Vx3gX)
for this exact support, so if you are having problems or if you have question, jump on and ask.

## What's New in v3.55.0
## What's New in v3.54.0

**Initial Zoo Code release** — establishes Zoo Code as an independent extension
on the VS Code Marketplace under `ZooCodeOrganization.zoo-code`, with
Expand Down Expand Up @@ -87,7 +87,7 @@ pre-release builds published automatically on every merge to `main`.
- [简体中文](locales/zh-CN/README.md)
- [繁體中文](locales/zh-TW/README.md)
- ...
</details>
</details>

---

Expand Down
4 changes: 2 additions & 2 deletions locales/ca/README.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions locales/de/README.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions locales/es/README.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions locales/fr/README.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions locales/hi/README.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions locales/id/README.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions locales/it/README.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions locales/ja/README.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions locales/ko/README.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions locales/nl/README.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions locales/pl/README.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions locales/pt-BR/README.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions locales/ru/README.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions locales/tr/README.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions locales/vi/README.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions locales/zh-CN/README.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions locales/zh-TW/README.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading