Skip to content

Commit de80707

Browse files
committedJul 12, 2022
src: fix IS_LTS and IS_RELEASE flags
Clear the `NODE_VERSION_IS_RELEASE` flag and restore the `NODE_VERSION_IS_LTS` flag. PR-URL: #43761 Refs: https://github.com/nodejs/node/runs/7271286633?check_suite_focus=true Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Beth Griggs <bgriggs@redhat.com> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com> Reviewed-By: Ruy Adorno <ruyadorno@github.com>
1 parent 7b1ea91 commit de80707

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
@@ -26,10 +26,10 @@
2626
#define NODE_MINOR_VERSION 20
2727
#define NODE_PATCH_VERSION 1
2828

29-
#define NODE_VERSION_IS_LTS 0
29+
#define NODE_VERSION_IS_LTS 1
3030
#define NODE_VERSION_LTS_CODENAME "Fermium"
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)
Please sign in to comment.