Skip to content

Commit c51d6b3

Browse files
committed
Prepare release v6.0.0.
1 parent e272619 commit c51d6b3

File tree

3 files changed

+42
-2
lines changed

3 files changed

+42
-2
lines changed

CHANGELOG.md

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

3+
## 2023-02-03 Version 6.0.0, @NickNaso
4+
5+
### Notable changes
6+
7+
#### API
8+
9+
- Added `Napi::Object::TypeTag()` and `Napi::Object::CheckTypeTag()` methods.
10+
- Made operator `napi_callback_info` explicit.
11+
12+
#### TEST
13+
14+
- Some minor fixes all over the test suite.
15+
- Added tests related to `Napi::Object::TypeTag()` and `Napi::Object::CheckTypeTag()` methods.
16+
- Added tests related to `Napi::CallbackScope`.
17+
- Added tests related to `Napi::EscapableHandleScope`.
18+
- Added tests related to `Napi::Maybe<T>`.
19+
- Added tests related to `Napi::ThreadSafeFuntion`.
20+
- Changed some tests related to `Napi::AsyncWorker`.
21+
22+
### Documentation
23+
24+
- Added documentation for `Napi::Object::TypeTag()` and `Napi::Object::CheckTypeTag()` methods.
25+
- Added documentation about how to run a specific unit test.
26+
27+
### TOOL
28+
29+
- Added `x86` architecture to the CI matrix.
30+
31+
### Commits
32+
33+
* \[[`e2726193f1`](https://github.com/nodejs/node-addon-api/commit/e2726193f1)] - **src**: remove AsyncWorker move and complete tests (JckXia) [#1266](https://github.com/nodejs/node-addon-api/pull/1266)
34+
* \[[`ff969485ea`](https://github.com/nodejs/node-addon-api/commit/ff969485ea)] - **chore**: build node-addon-api against X86 (JckXia) [#1276](https://github.com/nodejs/node-addon-api/pull/1276)
35+
* \[[`a70564cdfd`](https://github.com/nodejs/node-addon-api/commit/a70564cdfd)] - **test**: add cov for ThreadSafeFunction new overloads (JckXia) [#1251](https://github.com/nodejs/node-addon-api/pull/1251)
36+
* \[[`53f7cf1d48`](https://github.com/nodejs/node-addon-api/commit/53f7cf1d48)] - **src**: make operator napi\_callback\_info explicit (Kevin Eady) [#1275](https://github.com/nodejs/node-addon-api/pull/1275)
37+
* \[[`78b5a15533`](https://github.com/nodejs/node-addon-api/commit/78b5a15533)] - **test**: Add tests for ThreadSafeFunction's NonBlock function overloads (#1249) (Jack)
38+
* \[[`fdc6263034`](https://github.com/nodejs/node-addon-api/commit/fdc6263034)] - **test**: Add test covg for Maybe\<T> (#1270) (Jack)
39+
* \[[`35d9d669b3`](https://github.com/nodejs/node-addon-api/commit/35d9d669b3)] - **test**: add test covg for handle and escapehandle scopes (JckXia) [#1263](https://github.com/nodejs/node-addon-api/pull/1263)
40+
* \[[`021313409e`](https://github.com/nodejs/node-addon-api/commit/021313409e)] - **test**: add unit test covg for callbackscopes (JckXia) [#1262](https://github.com/nodejs/node-addon-api/pull/1262)
41+
* \[[`b11e4de2cf`](https://github.com/nodejs/node-addon-api/commit/b11e4de2cf)] - **src**: add Object::TypeTag, Object::CheckTypeTag (Kevin Eady) [#1261](https://github.com/nodejs/node-addon-api/pull/1261)
42+
343
## 2023-01-13 Version 5.1.0, @NickNaso
444

545
### 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: 5.1.0**
73+
## **Current version: 6.0.0**
7474

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

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -451,6 +451,6 @@
451451
"lint:fix": "node tools/clang-format --fix && node tools/eslint-format --fix"
452452
},
453453
"pre-commit": "lint",
454-
"version": "5.1.0",
454+
"version": "6.0.0",
455455
"support": true
456456
}

0 commit comments

Comments
 (0)