Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

src: add NODE_VERSION_IS_LTS to node_version.h #16697

Merged
merged 1 commit into from
Nov 20, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
src: add NODE_VERSION_IS_LTS to node_version.h
This is defined in LTS releases, but should really be defined in master
too.

PR-URL: #16697
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
  • Loading branch information
gibfahn committed Nov 20, 2017
commit e51216d722ca43b2db7f79c0c23e917f5b85bd3d
3 changes: 3 additions & 0 deletions src/node_version.h
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,9 @@
#define NODE_MINOR_VERSION 0
#define NODE_PATCH_VERSION 0

#define NODE_VERSION_IS_LTS 0
#define NODE_VERSION_LTS_CODENAME ""

#define NODE_VERSION_IS_RELEASE 0

#ifndef NODE_STRINGIFY
Expand Down