Skip to content

Commit e512f92

Browse files
committed
Add node 12 support
1 parent 3bd8b1b commit e512f92

File tree

4 files changed

+4
-1
lines changed

4 files changed

+4
-1
lines changed

.travis.yml

+1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ env:
2121
- TRAVIS_NODE_VERSION="9"
2222
- TRAVIS_NODE_VERSION="10"
2323
- TRAVIS_NODE_VERSION="11"
24+
- TRAVIS_NODE_VERSION="12"
2425
matrix:
2526
exclude:
2627
- os: osx

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Native Abstractions for Node.js
22
===============================
33

4-
**A header file filled with macro and utility goodness for making add-on development for Node.js easier across versions 0.8, 0.10, 0.12, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 and 11.**
4+
**A header file filled with macro and utility goodness for making add-on development for Node.js easier across versions 0.8, 0.10, 0.12, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11 and 12.**
55

66
***Current version: 2.13.2***
77

appveyor.yml

+1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ environment:
1515
- nodejs_version: "9"
1616
- nodejs_version: "10"
1717
- nodejs_version: "11"
18+
- nodejs_version: "12"
1819

1920
# Install scripts. (runs after repo cloning)
2021
install:

nan.h

+1
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@
3838
#define NODE_9_0_MODULE_VERSION 59
3939
#define NODE_10_0_MODULE_VERSION 64
4040
#define NODE_11_0_MODULE_VERSION 67
41+
#define NODE_12_0_MODULE_VERSION 72
4142

4243
#ifdef _MSC_VER
4344
# define NAN_HAS_CPLUSPLUS_11 (_MSC_VER >= 1800)

0 commit comments

Comments
 (0)