diff --git a/CHANGELOG.md b/CHANGELOG.md index 7115a07..dd081c2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,26 @@ # node-addon-api Changelog +## 2018-11-14 Version 1.6.1 (Current), @NickNaso + +### Notable changes: + +#### Documentation + +- Updated links for examples to point to node-addon-examples repo. +- Fixed typos on some parts of documentation. + +#### API + +- Removed unused member on `Napi::CallbackScope`. +- Enabled or disabled `Napi::CallbackScope` only with N-API v3. + +### Commmits + +* [[`e7cd292a74`](https://github.com/nodejs/node-addon-api/commit/e7cd292a74)] - **src**: remove unused CallbackScope member (Gabriel Schulhof) [#391](https://github.com/nodejs/node-addon-api/pull/391) +* [[`d47399fe25`](https://github.com/nodejs/node-addon-api/commit/d47399fe25)] - **src**: guard CallbackScope with N-API v3 (Michael Dawson) [#395](https://github.com/nodejs/node-addon-api/pull/395) +* [[`29a0262ab9`](https://github.com/nodejs/node-addon-api/commit/29a0262ab9)] - **doc**: fix typo (Dongjin Na) [#385](https://github.com/nodejs/node-addon-api/pull/385) +* [[`b6dc15b88d`](https://github.com/nodejs/node-addon-api/commit/b6dc15b88d)] - **doc**: make links point to node-addon-examples repo (Nicola Del Gobbo) [#389](https://github.com/nodejs/node-addon-api/pull/389) + ## 2018-11-02 Version 1.6.0 (Current), @NickNaso ### Notable changes: diff --git a/README.md b/README.md index 5bb5832..94266a4 100644 --- a/README.md +++ b/README.md @@ -46,7 +46,7 @@ to ideas specified in the **ECMA262 Language Specification**. - **[Contributors](#contributors)** - **[License](#license)** -## **Current version: 1.6** +## **Current version: 1.6.1** (See [CHANGELOG.md](CHANGELOG.md) for complete Changelog) diff --git a/package.json b/package.json index 038cd83..8dcafb1 100644 --- a/package.json +++ b/package.json @@ -57,5 +57,5 @@ "test": "node test", "doc": "doxygen doc/Doxyfile" }, - "version": "1.6.0" + "version": "1.6.1" }