From de80707870b78e9eb7fed5cd53824cf9ea343b7a Mon Sep 17 00:00:00 2001 From: Richard Lau Date: Sun, 10 Jul 2022 16:48:56 +0100 Subject: [PATCH] src: fix IS_LTS and IS_RELEASE flags MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Clear the `NODE_VERSION_IS_RELEASE` flag and restore the `NODE_VERSION_IS_LTS` flag. PR-URL: https://github.com/nodejs/node/pull/43761 Refs: https://github.com/nodejs/node/runs/7271286633?check_suite_focus=true Reviewed-By: Luigi Pinca Reviewed-By: Beth Griggs Reviewed-By: Michaƫl Zasso Reviewed-By: Rafael Gonzaga Reviewed-By: Ruy Adorno --- src/node_version.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/node_version.h b/src/node_version.h index 3130ac28da110f..bcbf0804e04ddc 100644 --- a/src/node_version.h +++ b/src/node_version.h @@ -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)