Skip to content

Commit

Permalink
Prepare for 1.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kkoopa committed Jan 22, 2015
1 parent 4047642 commit 2ffebd5
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 4 deletions.
8 changes: 6 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
# NAN ChangeLog

**Version 1.5.2: current Node unstable: 0.11.15, Node stable: 0.10.35, io.js: 1.0.3**
**Version 1.6.0: current Node unstable: 0.11.15, Node stable: 0.10.35, io.js: 1.0.3**

### 1.6.0 Jan 23 2015
- Deprecated `NanNewContextHandle` in favor of `NanNew<Context>` 49259af
- Support utility functions moved in newer v8 versions (Node 0.11.15, io.js 1.0) a0aa179
- Added `NanEncode`, `NanDecodeBytes` and `NanDecodeWrite` 75e6fb9

### 1.5.2 Jan 23 2015

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


### 1.5.1 Jan 15 2015

- Build: version bump
Expand Down
9 changes: 8 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.2***
***Current version: 1.6.0***

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

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

### Jan-2015: 1.6.0 release

* Deprecated `NanNewContextHandle` in favor of `NanNew<Context>`
* Added `NanSetCounterFunction`, `NanSetCreateHistogramFunction`, `NanSetAddHistogramSampleFunction`
* Added `NanIdleNotification`, `NanLowMemoryNotification`, `NanContextDisposedNotification`
* 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)
Expand Down
2 changes: 1 addition & 1 deletion nan.h
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
*
* MIT License <https://github.com/rvagg/nan/blob/master/LICENSE.md>
*
* Version 1.5.2: current Node unstable: 0.11.15, Node stable: 0.10.35, io.js: 1.0.3
* 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
**********************************************************************************/
Expand Down

0 comments on commit 2ffebd5

Please sign in to comment.