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
This more clearly specifies that version bumps should have a PR which is assigned to the next caretaker. It also specifies that the caretaker should include these PRs in the hand-off to the next caretaker. If anyone who notices these links missing, they should escalate to the caretaker just to make sure this step is not forgotten. This should make it less likely for a caretaker for forget to do the post-release version bump.
(cherry picked from commit de63f41)
Copy file name to clipboardExpand all lines: docs/process/release.md
+10
Original file line number
Diff line number
Diff line change
@@ -151,14 +151,24 @@ using the `--githubToken` flag. You just then have to confirm the draft.
151
151
152
152
## Post-release Version Update
153
153
154
+
**For each released version**:
155
+
154
156
Update the package versions to reflect the *next* release version in **both**:
155
157
1.`version` in [`package.json`](https://github.com/angular/angular-cli/blob/master/package.json#L3)
156
158
1.`DevkitBuild*` in [`packages/schematics/angular/utility/latest-versions.ts`](https://github.com/angular/angular-cli/blob/master/packages/schematics/angular/utility/latest-versions.ts)
157
159
158
160
```sh
161
+
git checkout -b release-bump-vXX
159
162
git commit package.json packages/schematics/angular/utility/latest-versions.ts -m "build: bump version to vXX"
163
+
git push -u origin release-bump-vXX
160
164
```
161
165
166
+
Then make a PR and assign it to the next primary caretaker.
167
+
168
+
Don't forget to update the Slack [#tools](https://angular-team.slack.com/archives/C46U16D4Z) channel topic and also post
169
+
links to all the version bump PRs. If anyone else on the team notices these links missing, they should ask the caretaker
170
+
to make sure the post-release version bump is not forgotten.
171
+
162
172
### Microsite Publishing
163
173
164
174
The [microsite](https://cli.angular.io/) is the landing page for Angular CLI and
0 commit comments