Skip to content

Commit 89a26b4

Browse files
authored
src: fix node_version.h
- Fix the version for main branch as 22.0.0 - Fix the NODE_VERSION_IS_RELEASE flag for the main branch This would allow test/parallel/test-release-changelog.js to pass again on the main branch. PR-URL: #50375 Fixes: #50373 Reviewed-By: Michaël Zasso <[email protected]> Reviewed-By: Antoine du Hamel <[email protected]> Reviewed-By: Richard Lau <[email protected]> Reviewed-By: Luigi Pinca <[email protected]>
1 parent c89bae1 commit 89a26b4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/node_version.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,14 @@
2222
#ifndef SRC_NODE_VERSION_H_
2323
#define SRC_NODE_VERSION_H_
2424

25-
#define NODE_MAJOR_VERSION 21
25+
#define NODE_MAJOR_VERSION 22
2626
#define NODE_MINOR_VERSION 0
2727
#define NODE_PATCH_VERSION 0
2828

2929
#define NODE_VERSION_IS_LTS 0
3030
#define NODE_VERSION_LTS_CODENAME ""
3131

32-
#define NODE_VERSION_IS_RELEASE 1
32+
#define NODE_VERSION_IS_RELEASE 0
3333

3434
#ifndef NODE_STRINGIFY
3535
#define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)

0 commit comments

Comments
 (0)