We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 90044f5 commit 8855bb0Copy full SHA for 8855bb0
doc/contributing/releases.md
@@ -721,6 +721,23 @@ Revert all changes that were made to `src/node_version.h`:
721
$ git checkout --ours HEAD -- src/node_version.h
722
```
723
724
+<details>
725
+<summary>LTS</summary>
726
+
727
+On the main branch, instead of reverting changes made to `src/node_version.h` edit it instead and:
728
729
+* Increment `NODE_MAJOR_VERSION` by one
730
+* Reset `NODE_PATCH_VERSION` to `0`
731
+* Change `NODE_VERSION_IS_RELEASE` back to `0`
732
733
+Amend the current commit to apply the changes:
734
735
+```
736
+$ git commit --amend
737
738
739
+</details>
740
741
Even if there are no conflicts, ensure that you revert all the changes that were
742
made to `src/node_version.h`.
743
0 commit comments