Skip to content

Commit 79d5651

Browse files
committed
Prepare release v4.2.0.
1 parent 2dc1f5b commit 79d5651

File tree

3 files changed

+46
-2
lines changed

3 files changed

+46
-2
lines changed

CHANGELOG.md

+32
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,37 @@
11
# node-addon-api Changelog
22

3+
## 2021-09-17 Version 4.2.0, @NickNaso
4+
5+
### Notable changes:
6+
7+
#### API
8+
9+
- Allow creating Function with move-only functor.
10+
- Fixed casts to not be undefined behavior.
11+
12+
#### TEST
13+
14+
- Fixed the way to enable C++ exceptions.
15+
- Run tests with options to prefix build root path.
16+
17+
### Documentation
18+
19+
- Fixed documentation about how to enable C++ exception.
20+
- Minor fixes all over documentation.
21+
22+
### Commits
23+
24+
* [[`2dc1f5b66c`](https://github.com/nodejs/node-addon-api/commit/2dc1f5b66c)] - Merge pull request #1065 from strager/move-only-functor (Nicola Del Gobbo)
25+
* [[`2b57a4aa4c`](https://github.com/nodejs/node-addon-api/commit/2b57a4aa4c)] - **src**: fix casts to not be undefined behavior (Anna Henningsen) [#1070](https://github.com/nodejs/node-addon-api/pull/1070)
26+
* [[`76de4d8222`](https://github.com/nodejs/node-addon-api/commit/76de4d8222)] - **docs**: fix typos (#1068) (todoroff)
27+
* [[`22a2f3c926`](https://github.com/nodejs/node-addon-api/commit/22a2f3c926)] - **docs**: fix typo and formatting (#1062) (strager)
28+
* [[`62b666c34c`](https://github.com/nodejs/node-addon-api/commit/62b666c34c)] - **test**: run tests with opts to prefix bld root path (Deepak Rajamohan) [#1055](https://github.com/nodejs/node-addon-api/pull/1055)
29+
* [[`cbac3aac5d`](https://github.com/nodejs/node-addon-api/commit/cbac3aac5d)] - **test**: standardize unit test file names (Deepak Rajamohan) [#1056](https://github.com/nodejs/node-addon-api/pull/1056)
30+
* [[`3e5897a78b`](https://github.com/nodejs/node-addon-api/commit/3e5897a78b)] - **src,test**: allow creating Function with move-only functor (Matthew "strager" Glazar)
31+
* [[`da2e754a02`](https://github.com/nodejs/node-addon-api/commit/da2e754a02)] - **test**: fix errors reported by newer compiler (Michael Dawson)
32+
* [[`9aaf3b1324`](https://github.com/nodejs/node-addon-api/commit/9aaf3b1324)] - **doc**: fix documentation about how to enable C++ exception (#1059) (Nicola Del Gobbo) [#1059](https://github.com/nodejs/node-addon-api/pull/1059)
33+
* [[`b2f861987f`](https://github.com/nodejs/node-addon-api/commit/b2f861987f)] - **test**: fixed the way to enable C++ exceptions. (#1061) (Nicola Del Gobbo) [#1061](https://github.com/nodejs/node-addon-api/pull/1061)
34+
335
## 2021-08-25 Version 4.1.0, @NickNaso
436

537
### Notable changes:

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ and node-addon-api.
7070
- **[Contributors](#contributors)**
7171
- **[License](#license)**
7272

73-
## **Current version: 4.1.0**
73+
## **Current version: 4.2.0**
7474

7575
(See [CHANGELOG.md](CHANGELOG.md) for complete Changelog)
7676

package.json

+13-1
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,10 @@
7575
"name": "David Halls",
7676
"url": "https://github.com/davedoesdev"
7777
},
78+
{
79+
"name": "Deepak Rajamohan",
80+
"url": "https://github.com/deepakrkris"
81+
},
7882
{
7983
"name": "Dmitry Ashkadov",
8084
"url": "https://github.com/dmitryash"
@@ -275,6 +279,10 @@
275279
"name": "Sam Roberts",
276280
"url": "https://github.com/sam-github"
277281
},
282+
{
283+
"name": "strager",
284+
"url": "https://github.com/strager"
285+
},
278286
{
279287
"name": "Taylor Woll",
280288
"url": "https://github.com/boingoing"
@@ -291,6 +299,10 @@
291299
"name": "Tobias Nießen",
292300
"url": "https://github.com/tniessen"
293301
},
302+
{
303+
"name": "todoroff",
304+
"url": "https://github.com/todoroff"
305+
},
294306
{
295307
"name": "Tux3",
296308
"url": "https://github.com/tux3"
@@ -364,6 +376,6 @@
364376
"lint:fix": "node tools/clang-format --fix"
365377
},
366378
"pre-commit": "lint",
367-
"version": "4.1.0",
379+
"version": "4.2.0",
368380
"support": true
369381
}

0 commit comments

Comments
 (0)