Skip to content

Commit 2ffebd5

Browse files
committed
Prepare for 1.6.0
1 parent 4047642 commit 2ffebd5

File tree

3 files changed

+15
-4
lines changed

3 files changed

+15
-4
lines changed

CHANGELOG.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
# NAN ChangeLog
22

3-
**Version 1.5.2: current Node unstable: 0.11.15, Node stable: 0.10.35, io.js: 1.0.3**
3+
**Version 1.6.0: current Node unstable: 0.11.15, Node stable: 0.10.35, io.js: 1.0.3**
4+
5+
### 1.6.0 Jan 23 2015
6+
- Deprecated `NanNewContextHandle` in favor of `NanNew<Context>` 49259af
7+
- Support utility functions moved in newer v8 versions (Node 0.11.15, io.js 1.0) a0aa179
8+
- Added `NanEncode`, `NanDecodeBytes` and `NanDecodeWrite` 75e6fb9
49

510
### 1.5.2 Jan 23 2015
611

@@ -14,7 +19,6 @@
1419
- Correctness: Make explicit downcasts of String lengths 00074e6
1520
- Windows: Limit the scope of disabled warning C4530 83d7deb
1621

17-
1822
### 1.5.1 Jan 15 2015
1923

2024
- Build: version bump

README.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Native Abstractions for Node.js
33

44
**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.**
55

6-
***Current version: 1.5.2***
6+
***Current version: 1.6.0***
77

88
*(See [CHANGELOG.md](https://github.com/rvagg/nan/blob/master/CHANGELOG.md) for complete ChangeLog)*
99

@@ -25,6 +25,13 @@ This project also contains some helper utilities that make addon development a b
2525
<a name="news"></a>
2626
## News & Updates
2727

28+
### Jan-2015: 1.6.0 release
29+
30+
* Deprecated `NanNewContextHandle` in favor of `NanNew<Context>`
31+
* Added `NanSetCounterFunction`, `NanSetCreateHistogramFunction`, `NanSetAddHistogramSampleFunction`
32+
* Added `NanIdleNotification`, `NanLowMemoryNotification`, `NanContextDisposedNotification`
33+
* Added `NanEncode`, `NanDecodeBytes` and `NanDecodeWrite`
34+
2835
### Jan-2015: 1.5.0 release
2936

3037
* Support [io.js](https://github.com/iojs/io.js) thanks to [Ben Noordhuis](bnoordhuis)

nan.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
*
1313
* MIT License <https://github.com/rvagg/nan/blob/master/LICENSE.md>
1414
*
15-
* Version 1.5.2: current Node unstable: 0.11.15, Node stable: 0.10.35, io.js: 1.0.3
15+
* Version 1.6.0: current Node unstable: 0.11.15, Node stable: 0.10.35, io.js: 1.0.3
1616
*
1717
* See https://github.com/rvagg/nan for the latest update to this file
1818
**********************************************************************************/

0 commit comments

Comments
 (0)