-
Notifications
You must be signed in to change notification settings - Fork 29.6k
Commit
Notable Changes: * build: Support for building io.js as a static library (Marat Abdullin) #1341 * deps: upgrade openssl to 1.0.2a (Shigeki Ohtsu) #1389 * npm: Upgrade npm to 2.8.3. (Forrest L Norvell) #1448 * src: allow multiple arguments to be passed to process.nextTick (Trevor Norris) #1077 * module: the interaction of require('.') with NODE_PATH has been restored and deprecated. This functionality will be removed at a later point. (Roman Reiss) #1363
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,10 +2,10 @@ | |
#define SRC_NODE_VERSION_H_ | ||
|
||
#define NODE_MAJOR_VERSION 1 | ||
#define NODE_MINOR_VERSION 7 | ||
#define NODE_PATCH_VERSION 2 | ||
#define NODE_MINOR_VERSION 8 | ||
#define NODE_PATCH_VERSION 0 | ||
|
||
#define NODE_VERSION_IS_RELEASE 0 | ||
#define NODE_VERSION_IS_RELEASE 1 | ||
|
||
#ifndef NODE_STRINGIFY | ||
#define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n) | ||
|
@@ -45,6 +45,6 @@ | |
* an API is broken in the C++ side, including in v8 or | ||
* other dependencies. | ||
*/ | ||
#define NODE_MODULE_VERSION 43 /* io.js v1.1.0 */ | ||
#define NODE_MODULE_VERSION 44 /* io.js v1.1.0 */ | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
rvagg
Member
|
||
|
||
#endif /* SRC_NODE_VERSION_H_ */ |
2 comments
on commit c0f8413
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks like this release hasn’t been git tag
ged?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oh, I see:
NOTICE: Skipped v1.8.0 due to problems with release tooling. See #1436 for details.
hmm, should the comment have updated?
Sorry, feels like I'm nitpicking now Dx