Skip to content

Commit 7582faf

Browse files
committed
Prepare release 2.0.2.
1 parent 5abf602 commit 7582faf

File tree

3 files changed

+26
-2
lines changed

3 files changed

+26
-2
lines changed

CHANGELOG.md

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

3+
## 2020-07-01 Version 2.0.2, @NickNaso
4+
5+
### Notable changes:
6+
7+
#### API
8+
9+
- `Napi::ObjectWrap`: avoid double-free on old Node.js.
10+
- `Napi::ObjectWrap`: remove wrap only on failure.
11+
- `Napi::ObjectWrap`: gracefully handle constructor exceptions
12+
- `Napi::ObjectWrap`: call `napi_remove_wrap()` in destructor.
13+
14+
#### TEST
15+
16+
- Updated `Napi::BigInt` test for recent change in core.
17+
18+
### Commmits
19+
20+
* [[`5abf60257d`](https://github.com/nodejs/node-addon-api/commit/5abf60257d)] - Merge pull request #723 from gabrielschulhof/backport-4e885069-pr-475 (Nicola Del Gobbo)
21+
* [[`470f130666`](https://github.com/nodejs/node-addon-api/commit/470f130666)] - **objectwrap**: avoid double-free on old Node.js (Gabriel Schulhof)
22+
* [[`81e2eac7ba`](https://github.com/nodejs/node-addon-api/commit/81e2eac7ba)] - **test**: update BigInt test for recent change in core (Michael Dawson) [#649](https://github.com/nodejs/node-addon-api/pull/649)
23+
* [[`204f07252c`](https://github.com/nodejs/node-addon-api/commit/204f07252c)] - **objectwrap**: remove wrap only on failure (Gabriel Schulhof)
24+
* [[`a552a384dd`](https://github.com/nodejs/node-addon-api/commit/a552a384dd)] - **src**: call `napi\_remove\_wrap()` in `ObjectWrap` dtor (Anna Henningsen) [#475](https://github.com/nodejs/node-addon-api/pull/475)
25+
* [[`1a51067438`](https://github.com/nodejs/node-addon-api/commit/1a51067438)] - **objectwrap**: gracefully handle constructor exceptions (Gabriel Schulhof)
26+
327
## 2020-06-02 Version 2.0.1, @NickNaso
428

529
### Notable changes:

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ to ideas specified in the **ECMA262 Language Specification**.
4646
- **[Contributors](#contributors)**
4747
- **[License](#license)**
4848

49-
## **Current version: 2.0.1**
49+
## **Current version: 2.0.2**
5050

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

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -240,5 +240,5 @@
240240
"dev:incremental": "node test",
241241
"doc": "doxygen doc/Doxyfile"
242242
},
243-
"version": "2.0.1"
243+
"version": "2.0.2"
244244
}

0 commit comments

Comments
 (0)