From aa688b9250dbf02e83f1236540a0e8d1db4e24c9 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 Clear the `NODE_VERSION_IS_RELEASE` flag and restore `NODE_VERSION_IS_LTS`. --- 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)