From be1e88f220a5cb15af34f5eff934efa23bc46f44 Mon Sep 17 00:00:00 2001 From: King Koopa Date: Wed, 21 Jan 2015 14:41:10 +0200 Subject: [PATCH] Prepare for 1.6.0 --- CHANGELOG.md | 8 +++++++- README.md | 9 ++++++++- nan.h | 2 +- package.json | 2 +- 4 files changed, 17 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4c2e3e6f..54d1eac9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,12 @@ # NAN ChangeLog -**Version 1.5.0: current Node unstable: 0.11.14, Node stable: 0.10.35, io.js: 1.0.1** +**Version 1.6.0: current Node unstable: 0.11.15, Node stable: 0.10.35, io.js: 1.0.3** + +### 1.6.0 Jan xx 2015 + - Support joyent/node 0.11.15 fb26146 + - Support utility functions moved in newer v8 versions a0aa179 + - Deprecated `NanNewContextHandle` in favor of `NanNew` 49259af + - Added `NanEncode`, `NanDecodeBytes` and `NanDecodeWrite` 75e6fb9 ### 1.5.0 Jan 14 2015 diff --git a/README.md b/README.md index d0a959ee..802ff0c7 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,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 and 0.11, and eventually 0.12.** -***Current version: 1.5.1*** +***Current version: 1.6.0*** *(See [CHANGELOG.md](https://github.com/rvagg/nan/blob/master/CHANGELOG.md) for complete ChangeLog)* @@ -24,6 +24,13 @@ This project also contains some helper utilities that make addon development a b ## News & Updates +### Jan-2015: 1.6.0 release + +* Support joyent/node 0.11.15 +* Support utility functions moved in newer v8 versions +* Deprecated `NanNewContextHandle` in favor of `NanNew` +* Added `NanEncode`, `NanDecodeBytes` and `NanDecodeWrite` + ### Jan-2015: 1.5.0 release * Support [io.js](https://github.com/iojs/io.js) thanks to [Ben Noordhuis](bnoordhuis) diff --git a/nan.h b/nan.h index 46b45158..b078ad64 100644 --- a/nan.h +++ b/nan.h @@ -12,7 +12,7 @@ * * MIT License * - * Version 1.5.0: current Node unstable: 0.11.14, Node stable: 0.10.35, io.js: 1.0.1 + * Version 1.6.0: current Node unstable: 0.11.15, Node stable: 0.10.35, io.js: 1.0.3 * * See https://github.com/rvagg/nan for the latest update to this file **********************************************************************************/ diff --git a/package.json b/package.json index d035737d..4be9048a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "nan", - "version": "1.5.1", + "version": "1.6.0", "description": "Native Abstractions for Node.js: C++ header for Node 0.8->0.12 compatibility", "main": "include_dirs.js", "repository": {