Skip to content
Open
Changes from all 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
6 changes: 3 additions & 3 deletions doc/contributing/releases.md
Original file line number Diff line number Diff line change
Expand Up @@ -314,22 +314,22 @@ git checkout -b v1.2.3-proposal upstream/v1.x-staging
You can also run:

```bash
git node release -S --prepare --security --filterLabel vX.x
git node release -S --prepare --security=../vulnerabilities.json --filterLabel vX.x
```

Example:

```bash
git checkout v20.x
git node release -S --prepare --security --filterLabel v20.x
git node release -S --prepare --security=../vulnerabilities.json --filterLabel v20.x
```

to automate the remaining steps until step 6 or you can perform it manually
following the below steps. For semver-minors, you can pass the new version
explicitly with `--newVersion` arg:

```bash
git node release -S --prepare --security --filterLabel v20.x --newVersion 20.20.0
git node release -S --prepare --security=../vulnerabilities.json --filterLabel v20.x --newVersion 20.20.0
```

<details>
Expand Down
Loading