Skip to content

Commit 61c9846

Browse files
committed
Prepare release 3.0.1.
1 parent 40c7926 commit 61c9846

File tree

3 files changed

+55
-4
lines changed

3 files changed

+55
-4
lines changed

CHANGELOG.md

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,40 @@
11
# node-addon-api Changelog
22

3+
## 2020-07-13 Version 3.0.1, @NickNaso
4+
5+
### Notable changes:
6+
7+
#### API
8+
9+
- Fixed the usage of `Napi::Reference` with `Napi::TypedArray`.
10+
- Fixed `Napi::ObjectWrap` inheritance.
11+
12+
#### Documentation
13+
14+
- Updated the example for `Napi::ObjectWrap`.
15+
- Added documentation for instance data APIs.
16+
- Some minor corrections all over the documentation.
17+
18+
#### TEST
19+
20+
- Fixed test for `Napi::ArrayBuffer` and `Napi::Buffer`.
21+
- Some minor corrections all over the test suite.
22+
23+
### Commits
24+
25+
* [[`40c7926342`](https://github.com/nodejs/node-addon-api/commit/40c7926342)] - **build**: ensure paths with spaces can be used (Lovell Fuller) [#757](https://github.com/nodejs/node-addon-api/pull/757)
26+
* [[`ef16dfb4a2`](https://github.com/nodejs/node-addon-api/commit/ef16dfb4a2)] - **doc**: update ObjectWrap example (Gabriel Schulhof) [#754](https://github.com/nodejs/node-addon-api/pull/754)
27+
* [[`48f6762bf6`](https://github.com/nodejs/node-addon-api/commit/48f6762bf6)] - **src**: add \_\_wasm32\_\_ guards (Gus Caplan)
28+
* [[`bd2c5ec502`](https://github.com/nodejs/node-addon-api/commit/bd2c5ec502)] - Fixes issue 745. (#748) (Nicola Del Gobbo)
29+
* [[`4c01af2d87`](https://github.com/nodejs/node-addon-api/commit/4c01af2d87)] - Fix typo in CHANGELOG (#715) (Kasumi Hanazuki)
30+
* [[`36e1af96d5`](https://github.com/nodejs/node-addon-api/commit/36e1af96d5)] - **src**: fix use of Reference with typed arrays (Michael Dawson) [#726](https://github.com/nodejs/node-addon-api/pull/726)
31+
* [[`d463f02bc7`](https://github.com/nodejs/node-addon-api/commit/d463f02bc7)] - **src**: fix testEnumerables on ObjectWrap (Ferdinand Holzer) [#736](https://github.com/nodejs/node-addon-api/pull/736)
32+
* [[`ba7ad37d44`](https://github.com/nodejs/node-addon-api/commit/ba7ad37d44)] - **src**: fix ObjectWrap inheritance (David Halls) [#732](https://github.com/nodejs/node-addon-api/pull/732)
33+
* [[`31504c862b`](https://github.com/nodejs/node-addon-api/commit/31504c862b)] - **doc**: fix minor typo in object\_wrap.md (#741) (Daniel Bevenius) [#741](https://github.com/nodejs/node-addon-api/pull/741)
34+
* [[`beccf2145d`](https://github.com/nodejs/node-addon-api/commit/beccf2145d)] - **test**: fix up delays for array buffer test (Michael Dawson) [#737](https://github.com/nodejs/node-addon-api/pull/737)
35+
* [[`45cb1d9748`](https://github.com/nodejs/node-addon-api/commit/45cb1d9748)] - Correct AsyncProgressWorker link in README (#716) (Jeroen Janssen)
36+
* [[`381c0da60c`](https://github.com/nodejs/node-addon-api/commit/381c0da60c)] - **doc**: add instance data APIs (Gabriel Schulhof) [#708](https://github.com/nodejs/node-addon-api/pull/708)
37+
338
## 2020-04-30 Version 3.0.0, @NickNaso
439

540
### Notable changes:

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,16 +47,16 @@ to ideas specified in the **ECMA262 Language Specification**.
4747
- **[Contributors](#contributors)**
4848
- **[License](#license)**
4949

50-
## **Current version: 3.0.0**
50+
## **Current version: 3.0.1**
5151

5252
(See [CHANGELOG.md](CHANGELOG.md) for complete Changelog)
5353

5454
[![NPM](https://nodei.co/npm/node-addon-api.png?downloads=true&downloadRank=true)](https://nodei.co/npm/node-addon-api/) [![NPM](https://nodei.co/npm-dl/node-addon-api.png?months=6&height=1)](https://nodei.co/npm/node-addon-api/)
5555

5656
<a name="setup"></a>
5757

58-
node-addon-api is based on [N-API](https://nodejs.org/api/n-api.html) and supports using different N-API versions.
59-
This allows addons built with it to run with Node.js versions which support the targeted N-API version.
58+
node-addon-api is based on [N-API](https://nodejs.org/api/n-api.html) and supports using different N-API versions.
59+
This allows addons built with it to run with Node.js versions which support the targeted N-API version.
6060
**However** the node-addon-api support model is to support only the active LTS Node.js versions. This means that
6161
every year there will be a new major which drops support for the Node.js LTS version which has gone out of service.
6262

package.json

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,10 @@
5959
"name": "Cory Mickelson",
6060
"url": "https://github.com/corymickelson"
6161
},
62+
{
63+
"name": "Daniel Bevenius",
64+
"url": "https://github.com/danbev"
65+
},
6266
{
6367
"name": "David Halls",
6468
"url": "https://github.com/davedoesdev"
@@ -107,6 +111,10 @@
107111
"name": "Jason Ginchereau",
108112
"url": "https://github.com/jasongin"
109113
},
114+
{
115+
"name": "Jeroen Janssen",
116+
"url": "https://github.com/japj"
117+
},
110118
{
111119
"name": "Jim Schlight",
112120
"url": "https://github.com/jschlight"
@@ -119,6 +127,10 @@
119127
"name": "joshgarde",
120128
"url": "https://github.com/joshgarde"
121129
},
130+
{
131+
"name": "Kasumi Hanazuki",
132+
"url": "https://github.com/hanazuki"
133+
},
122134
{
123135
"name": "Kelvin",
124136
"url": "https://github.com/kelvinhammond"
@@ -139,6 +151,10 @@
139151
"name": "legendecas",
140152
"url": "https://github.com/legendecas"
141153
},
154+
{
155+
"name": "Lovell Fuller",
156+
"url": "https://github.com/lovell"
157+
},
142158
{
143159
"name": "Luciano Martorella",
144160
"url": "https://github.com/lmartorella"
@@ -272,5 +288,5 @@
272288
"dev:incremental": "node test",
273289
"doc": "doxygen doc/Doxyfile"
274290
},
275-
"version": "3.0.0"
291+
"version": "3.0.1"
276292
}

0 commit comments

Comments
 (0)