Skip to content

Commit a750ed1

Browse files
committed
release: updates to metadata for next release
1 parent 386c2ae commit a750ed1

File tree

3 files changed

+54
-3
lines changed

3 files changed

+54
-3
lines changed

CHANGELOG.md

Lines changed: 47 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,47 @@
1-
# Node.js API (N-API) Package Changelog
1+
# node-addon-api Changelog
2+
3+
## 2018-05-08 Version 1.3.0 (Current), @mhdawson
4+
5+
### Notable changes:
6+
7+
#### Documentation
8+
- Added documentation for Scopes
9+
- Added documentation for migration from NAN
10+
- Update documentation to better explain the use of NODE_ADDON_API
11+
12+
#### API
13+
- Implement data manipulation methods for dataview
14+
- Use built-in N-API on Node.js >= 6.14.2
15+
- Value
16+
- Added IsExternal()
17+
- IsObject() allow functions
18+
- String
19+
- Fixed initialization of std::string to nullptr
20+
21+
#### Tests
22+
- Fix test failures on linuxOne and AIX
23+
- Added basic tests for Scopes
24+
- Fix MSVC warning C4244 in tests
25+
26+
### Commits
27+
28+
* [386c2aeb74] - test: remove dep on later C++ feature (Michael Dawson) https://github.com/nodejs/node-addon-api/pull/267
29+
* [10697734da] - Use built-in N-API on Node.js >= 6.14.2 (Gabriel Schulhof)
30+
* [75086da273] - test: add basic tests and doc for scopes (Michael Dawson) https://github.com/nodejs/node-addon-api/pull/250
31+
* [341dbd25d5] - doc: update blurb explaining NODE_ADDON_API (Gabriel Schulhof) https://github.com/nodejs/node-addon-api/pull/251
32+
* [cf6c93e4ee] - don't try to escape null (Michael Dawson) https://github.com/nodejs/node-addon-api/pull/245
33+
* [15e4b35fc2] - test: fix MSVC warning C4244 in tests (Kyle Farnung) https://github.com/nodejs/node-addon-api/pull/236
34+
* [7f3ca03b8e] - Create a doc for migration (Sampson Gao) https://github.com/nodejs/node-addon-api/pull/118
35+
* [0a2177debe] - Fix test failures on linuxOne and AIX (Jinho Bang) https://github.com/nodejs/node-addon-api/pull/232
36+
* [d567f4b6b5] - Added Napi::Value::IsExternal() (Eric Bickle) https://github.com/nodejs/node-addon-api/pull/227
37+
* [1b0f0e004a] - Update node-gyp.md (Michele Campus) https://github.com/nodejs/node-addon-api/pull/226
38+
* [faf19c4f7a] - Fixed initialization of std::string to nullptr (Eric Bickle) https://github.com/nodejs/node-addon-api/pull/228
39+
* [9c4d321b57] - Implement data manipulation methods for dataview (Jinho Bang) https://github.com/nodejs/node-addon-api/pull/218
40+
* [5a39fdca6f] - n-api: throw RangeError napi_create_typedarray() (Jinho Bang) https://github.com/nodejs/node-addon-api/pull/216
41+
* [1376377202] - Make IsObject() allow functions (Jinho Bang) https://github.com/nodejs/node-addon-api/pull/217
42+
* [673b59d319] - src: Initial implementation of DataView class (Jinho Bang) https://github.com/nodejs/node-addon-api/pull/205
43+
* [0a899bf1c5] - doc: update indication of latest version (Michael Dawson) https://github.com/nodejs/node-addon-api/pull/211
44+
* [17c74e5a5e] - n-api: RangeError in napi_create_dataview() (Jinho Bang) https://github.com/nodejs/node-addon-api/pull/214
45+
* [4058a29989] - n-api: fix memory leak in napi_async_destroy() (Jinho Bang) https://github.com/nodejs/node-addon-api/pull/213
46+
47+

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ values. Concepts and operations generally map to ideas specified in the
2929
- **[Contributors](#contributors)**
3030
- **[License](#license)**
3131

32-
## **Current version: 1.2.0**
32+
## **Current version: 1.3**
3333

3434
(See [CHANGELOG.md](CHANGELOG.md) for complete Changelog)
3535

@@ -127,6 +127,7 @@ Take a look and get inspired by our **[test suite](https://github.com/nodejs/nod
127127
| Hitesh Kanwathirtha | [digitalinfinity](https://github.com/digitalinfinity) |
128128
| Jason Ginchereau | [jasongin](https://github.com/jasongin) |
129129
| Michael Dawson | [mhdawson](https://github.com/mhdawson) |
130+
| Nicola Del Gobbo | [NickNaso](https://github.com/NickNaso) |
130131
| Sampson Gao | [sampsongao](https://github.com/sampsongao) |
131132
| Taylor Woll | [boingoing](https://github.com/boingoing) |
132133

package.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,19 @@
88
"Anna Henningsen (https://github.com/addaleax)",
99
"Arunesh Chandra (https://github.com/aruneshchandra)",
1010
"Benjamin Byholm (https://github.com/kkoopa)",
11+
"Cory Mickelson (https://github.com/corymickelson)",
1112
"David Halls (https://github.com/davedoesdev)",
13+
"Eric Bickle (https://github.com/ebickle)",
1214
"Gabriel Schulhof (https://github.com/gabrielschulhof)",
1315
"Hitesh Kanwathirtha (https://github.com/digitalinfinity)",
1416
"Jason Ginchereau (https://github.com/jasongin)",
17+
"Jim Schlight (https://github.com/jschlight)",
1518
"Jinho Bang (https://github.com/romandev)",
1619
"Konstantin Tarkus (https://github.com/koistya)",
1720
"Kyle Farnung (https://github.com/kfarnung)",
1821
"Matteo Collina (https://github.com/mcollina)",
1922
"Michael Dawson (https://github.com/mhdawson)",
23+
"Michele Campus (https://github.com/kYroL01)",
2024
"Nicola Del Gobbo (https://github.com/NickNaso)",
2125
"Rolf Timmermans (https://github.com/rolftimmermans)",
2226
"Sampson Gao (https://github.com/sampsongao)",
@@ -43,5 +47,5 @@
4347
"test": "node test",
4448
"doc": "doxygen doc/Doxyfile"
4549
},
46-
"version": "1.2.0"
50+
"version": "1.3.0"
4751
}

0 commit comments

Comments
 (0)