diff --git a/.travis.yml b/.travis.yml index a9dfdd32..7141073f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -21,6 +21,7 @@ env: - TRAVIS_NODE_VERSION="9" - TRAVIS_NODE_VERSION="10" - TRAVIS_NODE_VERSION="11" + - TRAVIS_NODE_VERSION="12" matrix: exclude: - os: osx diff --git a/README.md b/README.md index 8ccba893..58f65357 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ Native Abstractions for Node.js =============================== -**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.** +**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.** ***Current version: 2.13.2*** diff --git a/appveyor.yml b/appveyor.yml index 956be5b9..07eef935 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -15,6 +15,7 @@ environment: - nodejs_version: "9" - nodejs_version: "10" - nodejs_version: "11" + - nodejs_version: "12" # Install scripts. (runs after repo cloning) install: diff --git a/nan.h b/nan.h index f844c61b..f8a5554a 100644 --- a/nan.h +++ b/nan.h @@ -38,6 +38,7 @@ #define NODE_9_0_MODULE_VERSION 59 #define NODE_10_0_MODULE_VERSION 64 #define NODE_11_0_MODULE_VERSION 67 +#define NODE_12_0_MODULE_VERSION 72 #ifdef _MSC_VER # define NAN_HAS_CPLUSPLUS_11 (_MSC_VER >= 1800)