From 45f2258f74117e27ffced434a98ad6babc14f7fa Mon Sep 17 00:00:00 2001 From: Bryan English Date: Sat, 24 Sep 2022 17:07:48 -0400 Subject: [PATCH] src: restore IS_RELEASE to 0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit PR-URL: https://github.com/nodejs/node/pull/44758 Reviewed-By: Ruy Adorno Reviewed-By: Rafael Gonzaga Reviewed-By: Richard Lau Reviewed-By: Beth Griggs Reviewed-By: Tobias Nießen Reviewed-By: Myles Borins Reviewed-By: Rich Trott Reviewed-By: Tierney Cyren Reviewed-By: Antoine du Hamel --- src/node_version.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/node_version.h b/src/node_version.h index 4f93767441cf1f..fa83c7cce33740 100644 --- a/src/node_version.h +++ b/src/node_version.h @@ -29,7 +29,7 @@ #define NODE_VERSION_IS_LTS 0 #define NODE_VERSION_LTS_CODENAME "" -#define NODE_VERSION_IS_RELEASE 1 +#define NODE_VERSION_IS_RELEASE 0 #ifndef NODE_STRINGIFY #define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)