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
*[8. Propose release on GitHub](#8-propose-release-on-github)
18
+
*[9. Ensure that the release branch is stable](#9-ensure-that-the-release-branch-is-stable)
19
+
*[10. Land the release](#10-land-the-release)
20
+
*[11. Backport the release](#11-backport-the-release)
20
21
21
22
## How to create a release
22
23
@@ -199,15 +200,30 @@ released version `x`:
199
200
+ * version 10:
200
201
```
201
202
202
-
### 6. Create release commit
203
+
### 6. Update version matrix document
204
+
205
+
Add a new row in the [version matrix][] for
206
+
the new version:
207
+
208
+
```text
209
+
<tr>
210
+
<th scope="row">10</th>
211
+
<td>vREPLACEME+ and all later versions</td>
212
+
</tr>
213
+
```
214
+
215
+
In this case, use `REPLACEME` as a placeholder for the Node.js version to be released.
216
+
It will be updated in a Node.js version release.
217
+
218
+
### 7. Create release commit
203
219
204
220
When committing these to git, use the following message format:
205
221
206
222
```text
207
223
node-api: define version x
208
224
```
209
225
210
-
### 7. Propose release on GitHub
226
+
### 8. Propose release on GitHub
211
227
212
228
Create a pull request targeting the `main` branch. These PRs should be left
213
229
open for at least 24 hours, and can be updated as new commits land.
@@ -218,22 +234,26 @@ good place to @-mention the relevant contributors.
218
234
Tag the PR with the `notable-change` label, and @-mention the GitHub team
219
235
@nodejs/node-api and @nodejs/node-api-implementer.
220
236
221
-
### 8. Ensure that the release branch is stable
237
+
### 9. Ensure that the release branch is stable
222
238
223
239
Run a **[`node-test-pull-request`](https://ci.nodejs.org/job/node-test-pull-request/)**
224
240
test run to ensure that the build is stable and the HEAD commit is ready for
225
241
release.
226
242
227
-
### 9. Land the release
243
+
### 10. Land the release
228
244
229
245
See the steps documented in [Collaborator Guide - Landing a PR][] to land the
230
246
PR.
231
247
232
-
### 10. Backport the release
248
+
### 11. Backport the release
233
249
234
250
Consider backporting the release to all LTS versions following the steps
235
251
documented in the [backporting guide][].
236
252
253
+
Additionally, update the [version matrix][] for the backported version if
254
+
necessary.
255
+
237
256
[Collaborator Guide - Landing a PR]: ./collaborator-guide.md#landing-pull-requests
0 commit comments