File tree 7 files changed +151
-13
lines changed
7 files changed +151
-13
lines changed Original file line number Diff line number Diff line change @@ -31,7 +31,8 @@ release.
31
31
</tr >
32
32
<tr >
33
33
<td valign="top">
34
- <b ><a href =" doc/changelogs/CHANGELOG_V10.md#10.6.0 " >10.6.0</a ></b ><br />
34
+ <b ><a href =" doc/changelogs/CHANGELOG_V10.md#10.7.0 " >10.7.0</a ></b ><br />
35
+ <a href =" doc/changelogs/CHANGELOG_V10.md#10.6.0 " >10.6.0</a ><br />
35
36
<a href =" doc/changelogs/CHANGELOG_V10.md#10.5.0 " >10.5.0</a ><br />
36
37
<a href =" doc/changelogs/CHANGELOG_V10.md#10.4.1 " >10.4.1</a ><br />
37
38
<a href =" doc/changelogs/CHANGELOG_V10.md#10.4.0 " >10.4.0</a ><br />
Original file line number Diff line number Diff line change @@ -280,7 +280,7 @@ Throw errors for deprecations.
280
280
281
281
### ` --title=title `
282
282
<!-- YAML
283
- added: REPLACEME
283
+ added: v10.7.0
284
284
-->
285
285
286
286
Set ` process.title ` on startup.
Original file line number Diff line number Diff line change @@ -415,7 +415,7 @@ console.timeEnd('100-elements');
415
415
416
416
### console.timeLog([ label] [ , ...data ] )
417
417
<!-- YAML
418
- added: REPLACEME
418
+ added: v10.7.0
419
419
-->
420
420
* ` label ` {string} ** Default:** ` 'default' `
421
421
* ` ...data ` {any}
Original file line number Diff line number Diff line change @@ -1695,7 +1695,7 @@ The JavaScript `Number` type is described in
1695
1695
1696
1696
#### napi_create_bigint_int64
1697
1697
<!-- YAML
1698
- added: REPLACEME
1698
+ added: v10.7.0
1699
1699
-->
1700
1700
1701
1701
> Stability: 1 - Experimental
@@ -1716,7 +1716,7 @@ This API converts the C `int64_t` type to the JavaScript `BigInt` type.
1716
1716
1717
1717
#### napi_create_bigint_uint64
1718
1718
<!-- YAML
1719
- added: REPLACEME
1719
+ added: v10.7.0
1720
1720
-->
1721
1721
1722
1722
> Stability: 1 - Experimental
@@ -1737,7 +1737,7 @@ This API converts the C `uint64_t` type to the JavaScript `BigInt` type.
1737
1737
1738
1738
#### napi_create_bigint_words
1739
1739
<!-- YAML
1740
- added: REPLACEME
1740
+ added: v10.7.0
1741
1741
-->
1742
1742
1743
1743
> Stability: 1 - Experimental
@@ -2051,7 +2051,7 @@ This API returns the C double primitive equivalent of the given JavaScript
2051
2051
2052
2052
#### napi_get_value_bigint_int64
2053
2053
<!-- YAML
2054
- added: REPLACEME
2054
+ added: v10.7.0
2055
2055
-->
2056
2056
2057
2057
> Stability: 1 - Experimental
@@ -2079,7 +2079,7 @@ This API returns the C `int64_t` primitive equivalent of the given JavaScript
2079
2079
2080
2080
#### napi_get_value_bigint_uint64
2081
2081
<!-- YAML
2082
- added: REPLACEME
2082
+ added: v10.7.0
2083
2083
-->
2084
2084
2085
2085
> Stability: 1 - Experimental
@@ -2107,7 +2107,7 @@ This API returns the C `uint64_t` primitive equivalent of the given JavaScript
2107
2107
2108
2108
#### napi_get_value_bigint_words
2109
2109
<!-- YAML
2110
- added: REPLACEME
2110
+ added: v10.7.0
2111
2111
-->
2112
2112
2113
2113
> Stability: 1 - Experimental
Original file line number Diff line number Diff line change @@ -1196,7 +1196,7 @@ setTimeout(() => {
1196
1196
1197
1197
## process.hrtime.bigint()
1198
1198
<!-- YAML
1199
- added: REPLACEME
1199
+ added: v10.7.0
1200
1200
-->
1201
1201
1202
1202
* Returns: {bigint}
Load Diff Large diffs are not rendered by default.
Original file line number Diff line number Diff line change 23
23
#define SRC_NODE_VERSION_H_
24
24
25
25
#define NODE_MAJOR_VERSION 10
26
- #define NODE_MINOR_VERSION 6
27
- #define NODE_PATCH_VERSION 1
26
+ #define NODE_MINOR_VERSION 7
27
+ #define NODE_PATCH_VERSION 0
28
28
29
29
#define NODE_VERSION_IS_LTS 0
30
30
#define NODE_VERSION_LTS_CODENAME ""
31
31
32
- #define NODE_VERSION_IS_RELEASE 0
32
+ #define NODE_VERSION_IS_RELEASE 1
33
33
34
34
#ifndef NODE_STRINGIFY
35
35
#define NODE_STRINGIFY (n ) NODE_STRINGIFY_HELPER(n)
You can’t perform that action at this time.
0 commit comments