Skip to content

Commit

Permalink
src: fix IS_LTS and IS_RELEASE flags
Browse files Browse the repository at this point in the history
Clear the `NODE_VERSION_IS_RELEASE` flag and restore the
`NODE_VERSION_IS_LTS` flag.

PR-URL: nodejs#43761
Refs: https://github.com/nodejs/node/runs/7271286633?check_suite_focus=true
Reviewed-By: Luigi Pinca <[email protected]>
Reviewed-By: Beth Griggs <[email protected]>
Reviewed-By: Michaël Zasso <[email protected]>
Reviewed-By: Rafael Gonzaga <[email protected]>
Reviewed-By: Ruy Adorno <[email protected]>
  • Loading branch information
richardlau committed Jul 12, 2022
1 parent 7b1ea91 commit de80707
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/node_version.h
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@
#define NODE_MINOR_VERSION 20
#define NODE_PATCH_VERSION 1

#define NODE_VERSION_IS_LTS 0
#define NODE_VERSION_IS_LTS 1
#define NODE_VERSION_LTS_CODENAME "Fermium"

#define NODE_VERSION_IS_RELEASE 1
#define NODE_VERSION_IS_RELEASE 0

#ifndef NODE_STRINGIFY
#define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)
Expand Down

0 comments on commit de80707

Please sign in to comment.