You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Ask the user what three areas should be highlighted.
63
54
- Update relevant announcement files and documentation, including `webview-ui/src/components/chat/Announcement.tsx`, `README.md`, and the `latestAnnouncementId`in`src/core/webview/ClineProvider.ts`.
64
55
- Ask the user to confirm the English announcement before proceeding.
65
56
- Arrange translation updates for all supported locales affected by README, announcement, or package localization changes.
66
57
67
-
9. Create the release branch:
58
+
8. Create the release branch:
68
59
69
60
```bash
70
61
git checkout -b release/v[version]
71
62
```
72
63
73
-
10. Generate the final release state on that branch:
64
+
9. Generate the final release state on that branch:
74
65
75
66
```bash
76
67
pnpm changeset:version
@@ -79,23 +70,23 @@ mode: code
79
70
- This should update `src/package.json`, `CHANGELOG.md`, and `src/CHANGELOG.md`, then consume the `.changeset` file.
80
71
- Review the generated version and changelog before opening the PR.
81
72
82
-
11. Open a single release PR with the fully generated release state.
73
+
10. Open a single release PR with the fully generated release state.
gh pr create --title "Release v[version]" --body "Release preparation for v[version]. This PR includes the final version bump, changelog updates, Marketplace README updates, and any release assets or announcement changes." --base main --head release/v[version]
81
+
gh pr create --title "Release v[version]" --body "Release preparation for v[version]. This PR includes the final version bump, changelog updates, Marketplace README updates, and any announcement changes." --base main --head release/v[version]
91
82
```
92
83
93
84
- There is no separate version-bump PR in this flow.
94
85
- The release PR should already contain the final version number and generated changelog updates.
95
86
- If the release includes translated README or package-localization updates, include those files in the same PR.
96
87
- Let the release validation workflow and normal PR checks run before merge.
97
88
98
-
12. After the release PR is merged, stop for a release review on the resulting `main` commit.
89
+
11. After the release PR is merged, stop for a release review on the resulting `main` commit.
99
90
100
91
```bash
101
92
git switch main
@@ -110,7 +101,7 @@ mode: code
110
101
- Share that review summary, including `REVIEWED_SHA`, with the user and waitfor explicit confirmation before creating the tag.
111
102
- Do not create the tag or trigger publishing until the user says to proceed.
112
103
113
-
13. Only after explicit confirmation, create the release tag on that reviewed `main` commit:
104
+
12. Only after explicit confirmation, create the release tag on that reviewed `main` commit:
114
105
115
106
```bash
116
107
git tag v[version] "$REVIEWED_SHA"
@@ -119,7 +110,7 @@ mode: code
119
110
120
111
- If `main` advances after the review pause, keep using the pinned `REVIEWED_SHA`for the tag instead of silently tagging a newer commit.
121
112
122
-
14. The stable publish workflow runs from the `v[version]` tag.
113
+
13. The stable publish workflow runs from the `v[version]` tag.
123
114
124
115
- Do not create the tag before the release PR is merged.
125
116
- The publish workflow validates that the tag version matches `src/package.json`.
Copy file name to clipboardExpand all lines: CHANGELOG.md
-1Lines changed: 0 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,6 @@
4
4
5
5
### Patch Changes
6
6
7
-
-
8
7
- Fix API requests hanging indefinitely on VS Code 1.122.0+ when Zoo Code could not find the bundled ripgrep binary after the `@vscode/ripgrep-universal` rename (#381 by @greatgradz-svg, PR #248 by @0xMink).
9
8
10
9
All notable changes to Zoo Code will be documented in this file.
0 commit comments