Skip to content

Commit d5f87c5

Browse files
committed
2020-04-07, Version 10.20.0 'Dubnium' (LTS)
macOS package notarization and a change in builder configuration The macOS binaries for this release, and future 10.x releases, are now being compiled on macOS 10.15 (Catalina) with Xcode 11 to support package notarization, a requirement for installing .pkg files on macOS 10.15 and later. Previous builds of Node.js 10.x were compiled on macOS 10.7 (Lion). As binaries are still being compiled to support a minimum of macOS 10.7 (Lion) we do not anticipate this having a negative impact on Node.js 10.x users with older versions of macOS. Notable changes: - buffer: add {read|write}Big\[U\]Int64{BE|LE} methods (garygsc) [#19691](#19691) - build: macOS package notarization (Rod Vagg) [#31459](#31459) - deps: - update npm to 6.14.3 (Myles Borins) [#32368](#32368) - upgrade openssl sources to 1.1.1e (Hassaan Pasha) [#32328](#32328) - upgrade to libuv 1.34.2 (cjihrig) [#31477](#31477) - n-api: - add napi\_get\_all\_property\_names (himself65) [#30006](#30006) - add APIs for per-instance state management (Gabriel Schulhof) [#28682](#28682) - define release 6 [#32058](#32058) - turn NAPI\_CALL\_INTO\_MODULE into a function (Anna Henningsen) [#26128](#26128) - tls: - expose keylog event on TLSSocket (Alba Mendez) [#27654](#27654) - support TLS min/max protocol defaults in CLI (Sam Roberts) [#27946](#27946) - url: handle quasi-WHATWG URLs in urlToOptions() (cjihrig) [#26226](#26226) PR-URL: #31984
1 parent 017909b commit d5f87c5

File tree

7 files changed

+111
-20
lines changed

7 files changed

+111
-20
lines changed

CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,8 @@ release.
3333
<a href="doc/changelogs/CHANGELOG_V12.md#12.0.0">12.0.0</a><br/>
3434
</td>
3535
<td valign="top">
36-
<b><a href="doc/changelogs/CHANGELOG_V10.md#10.19.0">10.19.0</a></b><br/>
36+
<b><a href="doc/changelogs/CHANGELOG_V10.md#10.20.0">10.20.0</a></b><br/>
37+
<a href="doc/changelogs/CHANGELOG_V10.md#10.19.0">10.19.0</a><br/>
3738
<a href="doc/changelogs/CHANGELOG_V10.md#10.18.1">10.18.1</a><br/>
3839
<a href="doc/changelogs/CHANGELOG_V10.md#10.18.0">10.18.0</a><br/>
3940
<a href="doc/changelogs/CHANGELOG_V10.md#10.17.0">10.17.0</a><br/>

doc/api/buffer.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -1532,7 +1532,7 @@ The `buf.parent` property is a deprecated alias for `buf.buffer`.
15321532
### buf.readBigInt64BE(offset)
15331533
### buf.readBigInt64LE(offset)
15341534
<!-- YAML
1535-
added: REPLACEME
1535+
added: v10.20.0
15361536
-->
15371537

15381538
* `offset` {integer} Number of bytes to skip before starting to read. Must
@@ -1548,7 +1548,7 @@ Integers read from a `Buffer` are interpreted as two's complement signed values.
15481548
### buf.readBigUInt64BE(offset)
15491549
### buf.readBigUInt64LE(offset)
15501550
<!-- YAML
1551-
added: REPLACEME
1551+
added: v10.20.0
15521552
-->
15531553

15541554
* `offset` {integer} Number of bytes to skip before starting to read. Must
@@ -2176,7 +2176,7 @@ console.log(`${len} bytes: ${buf.toString('utf8', 0, len)}`);
21762176
### buf.writeBigInt64BE(value, offset)
21772177
### buf.writeBigInt64LE(value, offset)
21782178
<!-- YAML
2179-
added: REPLACEME
2179+
added: v10.20.0
21802180
-->
21812181

21822182
* `value` {bigint} Number to be written to `buf`.
@@ -2202,7 +2202,7 @@ console.log(buf);
22022202
### buf.writeBigUInt64BE(value, offset)
22032203
### buf.writeBigUInt64LE(value, offset)
22042204
<!-- YAML
2205-
added: REPLACEME
2205+
added: v10.20.0
22062206
-->
22072207

22082208
* `value` {bigint} Number to be written to `buf`.

doc/api/cli.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -361,31 +361,31 @@ with crypto support (default).
361361

362362
### `--tls-max-v1.2`
363363
<!-- YAML
364-
added: REPLACEME
364+
added: v10.20.0
365365
-->
366366

367367
Does nothing, [`tls.DEFAULT_MAX_VERSION`][] is always 'TLSv1.2'. Exists for
368368
compatibility with Node.js 11.x and higher.
369369

370370
### `--tls-min-v1.0`
371371
<!-- YAML
372-
added: REPLACEME
372+
added: v10.20.0
373373
-->
374374

375375
Set default [`tls.DEFAULT_MIN_VERSION`][] to 'TLSv1'. Use for compatibility with
376376
old TLS clients or servers.
377377

378378
### `--tls-min-v1.1`
379379
<!-- YAML
380-
added: REPLACEME
380+
added: v10.20.0
381381
-->
382382

383383
Set default [`tls.DEFAULT_MIN_VERSION`][] to 'TLSv1.1'. Use for compatibility
384384
with old TLS clients or servers.
385385

386386
### `--tls-min-v1.2`
387387
<!-- YAML
388-
added: REPLACEME
388+
added: v10.20.0
389389
-->
390390

391391
Set default [`tls.DEFAULT_MIN_VERSION`][] to 'TLSv1.2'. Use this to disable

doc/api/n-api.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ tied to the life cycle of the Agent.
188188

189189
### napi_set_instance_data
190190
<!-- YAML
191-
added: REPLACEME
191+
added: v10.20.0
192192
napiVersion: 6
193193
-->
194194

@@ -216,7 +216,7 @@ by the previous call, it will not be called.
216216

217217
### napi_get_instance_data
218218
<!-- YAML
219-
added: REPLACEME
219+
added: v10.20.0
220220
napiVersion: 6
221221
-->
222222

@@ -1376,7 +1376,7 @@ the `napi_value` in question is of the JavaScript type expected by the API.
13761376
### Enum types
13771377
#### napi_key_collection_mode
13781378
<!-- YAML
1379-
added: REPLACEME
1379+
added: v10.20.0
13801380
napiVersion: 6
13811381
-->
13821382

@@ -1397,7 +1397,7 @@ of the objects's prototype chain as well.
13971397

13981398
#### napi_key_filter
13991399
<!-- YAML
1400-
added: REPLACEME
1400+
added: v10.20.0
14011401
napiVersion: 6
14021402
-->
14031403

@@ -1416,7 +1416,7 @@ Property filter bits. They can be or'ed to build a composite filter.
14161416

14171417
#### napi_key_conversion
14181418
<!-- YAML
1419-
added: REPLACEME
1419+
added: v10.20.0
14201420
napiVersion: 6
14211421
-->
14221422

@@ -3181,7 +3181,7 @@ included.
31813181

31823182
#### napi_get_all_property_names
31833183
<!-- YAML
3184-
added: REPLACEME
3184+
added: v10.20.0
31853185
napiVersion: 6
31863186
-->
31873187

doc/api/tls.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -301,7 +301,7 @@ connections using TLS or SSL.
301301

302302
### Event: 'keylog'
303303
<!-- YAML
304-
added: REPLACEME
304+
added: v10.20.0
305305
-->
306306

307307
* `line` {Buffer} Line of ASCII text, in NSS `SSLKEYLOGFILE` format.
@@ -603,7 +603,7 @@ Construct a new `tls.TLSSocket` object from an existing TCP socket.
603603

604604
### Event: 'keylog'
605605
<!-- YAML
606-
added: REPLACEME
606+
added: v10.20.0
607607
-->
608608

609609
* `line` {Buffer} Line of ASCII text, in NSS `SSLKEYLOGFILE` format.

doc/changelogs/CHANGELOG_V10.md

+90
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
</tr>
1111
<tr>
1212
<td valign="top">
13+
<a href="#10.20.0">10.20.0</a><br/>
1314
<a href="#10.19.0">10.19.0</a><br/>
1415
<a href="#10.18.1">10.18.1</a><br/>
1516
<a href="#10.18.0">10.18.0</a><br/>
@@ -59,6 +60,95 @@
5960
* [io.js](CHANGELOG_IOJS.md)
6061
* [Archive](CHANGELOG_ARCHIVE.md)
6162

63+
<a id="10.20.0"></a>
64+
## 2020-04-07, Version 10.20.0 'Dubnium' (LTS), @BethGriggs
65+
66+
### macOS package notarization and a change in builder configuration
67+
68+
The macOS binaries for this release, and future 10.x releases, are now
69+
being compiled on macOS 10.15 (Catalina) with Xcode 11 to support
70+
package notarization, a requirement for installing .pkg files on macOS
71+
10.15 and later. Previous builds of Node.js 10.x were compiled on macOS
72+
10.7 (Lion). As binaries are still being compiled to support a minimum
73+
of macOS 10.7 (Lion) we do not anticipate this having a negative impact
74+
on Node.js 10.x users with older versions of macOS.
75+
76+
### Notable changes
77+
78+
* **buffer**: add {read|write}Big\[U\]Int64{BE|LE} methods (garygsc) [#19691](https://github.com/nodejs/node/pull/19691)
79+
* **build**: macOS package notarization (Rod Vagg) [#31459](https://github.com/nodejs/node/pull/31459)
80+
* **deps**:
81+
* update npm to 6.14.3 (Myles Borins) [#32368](https://github.com/nodejs/node/pull/32368)
82+
* upgrade openssl sources to 1.1.1e (Hassaan Pasha) [#32328](https://github.com/nodejs/node/pull/32328)
83+
* upgrade to libuv 1.34.2 (cjihrig) [#31477](https://github.com/nodejs/node/pull/31477)
84+
* **n-api**:
85+
* add napi\_get\_all\_property\_names (himself65) [#30006](https://github.com/nodejs/node/pull/30006)
86+
* add APIs for per-instance state management (Gabriel Schulhof) [#28682](https://github.com/nodejs/node/pull/28682)
87+
* define release 6 [#32058](https://github.com/nodejs/node/pull/32058)
88+
* turn NAPI\_CALL\_INTO\_MODULE into a function (Anna Henningsen) [#26128](https://github.com/nodejs/node/pull/26128)
89+
* **tls**:
90+
* expose keylog event on TLSSocket (Alba Mendez) [#27654](https://github.com/nodejs/node/pull/27654)
91+
* support TLS min/max protocol defaults in CLI (Sam Roberts) [#27946](https://github.com/nodejs/node/pull/27946)
92+
* **url**: handle quasi-WHATWG URLs in urlToOptions() (cjihrig) [#26226](https://github.com/nodejs/node/pull/26226)
93+
94+
### Commits
95+
96+
* [[`64744a282e`](https://github.com/nodejs/node/commit/64744a282e)] - **(SEMVER-MINOR)** **buffer**: add {read|write}Big\[U\]Int64{BE|LE} methods (garygsc) [#19691](https://github.com/nodejs/node/pull/19691)
97+
* [[`8a0ed8f1ff`](https://github.com/nodejs/node/commit/8a0ed8f1ff)] - **build**: macOS package notarization (Rod Vagg) [#31459](https://github.com/nodejs/node/pull/31459)
98+
* [[`42af3b861a`](https://github.com/nodejs/node/commit/42af3b861a)] - **build,win**: fix goto exit in vcbuild (João Reis) [#30931](https://github.com/nodejs/node/pull/30931)
99+
* [[`b164a2e3bf`](https://github.com/nodejs/node/commit/b164a2e3bf)] - **console**: add trace-events for time and count (James M Snell) [#23703](https://github.com/nodejs/node/pull/23703)
100+
* [[`04cd67f85e`](https://github.com/nodejs/node/commit/04cd67f85e)] - **deps**: upgrade npm to 6.14.4 (Ruy Adorno) [#32495](https://github.com/nodejs/node/pull/32495)
101+
* [[`8d85a43d99`](https://github.com/nodejs/node/commit/8d85a43d99)] - **deps**: update term-size with signed version (Rod Vagg) [#31459](https://github.com/nodejs/node/pull/31459)
102+
* [[`76033c5495`](https://github.com/nodejs/node/commit/76033c5495)] - **deps**: update archs files for OpenSSL-1.1.1e (Hassaan Pasha) [#32328](https://github.com/nodejs/node/pull/32328)
103+
* [[`64c184836b`](https://github.com/nodejs/node/commit/64c184836b)] - **deps**: adjust openssl configuration for 1.1.1e (Hassaan Pasha) [#32328](https://github.com/nodejs/node/pull/32328)
104+
* [[`c8f5ab2089`](https://github.com/nodejs/node/commit/c8f5ab2089)] - **deps**: upgrade openssl sources to 1.1.1e (Hassaan Pasha) [#32328](https://github.com/nodejs/node/pull/32328)
105+
* [[`bf26c44c92`](https://github.com/nodejs/node/commit/bf26c44c92)] - **deps**: remove \*.pyc files from deps/npm (Ben Noordhuis) [#32387](https://github.com/nodejs/node/pull/32387)
106+
* [[`c2b3cf61ce`](https://github.com/nodejs/node/commit/c2b3cf61ce)] - **deps**: update npm to 6.14.3 (Myles Borins) [#32368](https://github.com/nodejs/node/pull/32368)
107+
* [[`8cae4dde91`](https://github.com/nodejs/node/commit/8cae4dde91)] - **deps**: upgrade npm to 6.14.1 (Isaac Z. Schlueter) [#31977](https://github.com/nodejs/node/pull/31977)
108+
* [[`47046aa5a9`](https://github.com/nodejs/node/commit/47046aa5a9)] - **deps**: openssl: cherry-pick 4dcb150ea30f (Adam Majer) [#32002](https://github.com/nodejs/node/pull/32002)
109+
* [[`098704c85d`](https://github.com/nodejs/node/commit/098704c85d)] - **deps**: upgrade to libuv 1.34.2 (Colin Ihrig) [#31477](https://github.com/nodejs/node/pull/31477)
110+
* [[`4b1cccc4ce`](https://github.com/nodejs/node/commit/4b1cccc4ce)] - **deps**: upgrade to libuv 1.34.1 (Colin Ihrig) [#31332](https://github.com/nodejs/node/pull/31332)
111+
* [[`fff6162693`](https://github.com/nodejs/node/commit/fff6162693)] - **(SEMVER-MINOR)** **deps**: upgrade to libuv 1.34.0 (Colin Ihrig) [#30783](https://github.com/nodejs/node/pull/30783)
112+
* [[`6826ef0568`](https://github.com/nodejs/node/commit/6826ef0568)] - **deps**: upgrade to libuv 1.33.1 (Colin Ihrig) [#29996](https://github.com/nodejs/node/pull/29996)
113+
* [[`aed7ca4fb0`](https://github.com/nodejs/node/commit/aed7ca4fb0)] - **deps**: upgrade to libuv 1.32.0 (Colin Ihrig) [#29508](https://github.com/nodejs/node/pull/29508)
114+
* [[`794abbc758`](https://github.com/nodejs/node/commit/794abbc758)] - **deps**: upgrade to libuv 1.31.0 (Colin Ihrig) [#29070](https://github.com/nodejs/node/pull/29070)
115+
* [[`ed71f55a54`](https://github.com/nodejs/node/commit/ed71f55a54)] - **deps**: upgrade to libuv 1.30.1 (Colin Ihrig) [#28511](https://github.com/nodejs/node/pull/28511)
116+
* [[`7cde563235`](https://github.com/nodejs/node/commit/7cde563235)] - **deps**: upgrade to libuv 1.30.0 (Colin Ihrig) [#28449](https://github.com/nodejs/node/pull/28449)
117+
* [[`b53ce6e6c5`](https://github.com/nodejs/node/commit/b53ce6e6c5)] - **deps**: upgrade to libuv 1.29.1 (Colin Ihrig) [#27718](https://github.com/nodejs/node/pull/27718)
118+
* [[`9b2b66b7d8`](https://github.com/nodejs/node/commit/9b2b66b7d8)] - **deps**: V8: cherry-pick d89f4ef1cd62 (Milad Farazmand) [#31753](https://github.com/nodejs/node/pull/31753)
119+
* [[`7eac95981e`](https://github.com/nodejs/node/commit/7eac95981e)] - **deps**: upgrade npm to 6.13.7 (Michael Perrotte) [#31558](https://github.com/nodejs/node/pull/31558)
120+
* [[`db24641fbe`](https://github.com/nodejs/node/commit/db24641fbe)] - **deps**: upgrade npm to 6.13.6 (Ruy Adorno) [#31304](https://github.com/nodejs/node/pull/31304)
121+
* [[`2e3d511cff`](https://github.com/nodejs/node/commit/2e3d511cff)] - **doc**: correct version metadata for Readable.from (Dave Vandyke) [#32639](https://github.com/nodejs/node/pull/32639)
122+
* [[`34c1c2a82b`](https://github.com/nodejs/node/commit/34c1c2a82b)] - **doc**: add missing version metadata for Readable.from (Anna Henningsen) [#28695](https://github.com/nodejs/node/pull/28695)
123+
* [[`aa7d369c72`](https://github.com/nodejs/node/commit/aa7d369c72)] - **doc**: update releaser list in README.md (Myles Borins) [#32577](https://github.com/nodejs/node/pull/32577)
124+
* [[`05f5b3ecc4`](https://github.com/nodejs/node/commit/05f5b3ecc4)] - **doc**: remove em dashes (Rich Trott) [#32080](https://github.com/nodejs/node/pull/32080)
125+
* [[`ffa9f9bd1b`](https://github.com/nodejs/node/commit/ffa9f9bd1b)] - **doc**: fix changelog for v10.18.1 (Andrew Hughes) [#31358](https://github.com/nodejs/node/pull/31358)
126+
* [[`0177464b0e`](https://github.com/nodejs/node/commit/0177464b0e)] - **doc,tools**: get altDocs versions from CHANGELOG.md (Richard Lau) [#27661](https://github.com/nodejs/node/pull/27661)
127+
* [[`e9c590ea00`](https://github.com/nodejs/node/commit/e9c590ea00)] - **(SEMVER-MINOR)** **n-api**: define release 6 (Gabriel Schulhof) [#32058](https://github.com/nodejs/node/pull/32058)
128+
* [[`239377b654`](https://github.com/nodejs/node/commit/239377b654)] - **(SEMVER-MINOR)** **n-api**: correct instance data tests (Gabriel Schulhof) [#32488](https://github.com/nodejs/node/pull/32488)
129+
* [[`ecbb331be0`](https://github.com/nodejs/node/commit/ecbb331be0)] - **(SEMVER-MINOR)** **n-api**: add napi\_get\_all\_property\_names (himself65) [#30006](https://github.com/nodejs/node/pull/30006)
130+
* [[`f29fb14cf6`](https://github.com/nodejs/node/commit/f29fb14cf6)] - **(SEMVER-MINOR)** **n-api**: add APIs for per-instance state management (Gabriel Schulhof) [#28682](https://github.com/nodejs/node/pull/28682)
131+
* [[`20177b9946`](https://github.com/nodejs/node/commit/20177b9946)] - **n-api**: turn NAPI\_CALL\_INTO\_MODULE into a function (Anna Henningsen) [#26128](https://github.com/nodejs/node/pull/26128)
132+
* [[`017909b847`](https://github.com/nodejs/node/commit/017909b847)] - **test**: fix tool path in test-doctool-versions.js (Richard Lau) [#32645](https://github.com/nodejs/node/pull/32645)
133+
* [[`1ea70d641d`](https://github.com/nodejs/node/commit/1ea70d641d)] - **test**: fix flaky doctool and test (Rich Trott) [#29979](https://github.com/nodejs/node/pull/29979)
134+
* [[`89692ff19b`](https://github.com/nodejs/node/commit/89692ff19b)] - **test**: end tls connection with some data (Sam Roberts) [#32328](https://github.com/nodejs/node/pull/32328)
135+
* [[`9bd1317764`](https://github.com/nodejs/node/commit/9bd1317764)] - **test**: mark empty udp tests flaky on OS X (Sam Roberts) [#31936](https://github.com/nodejs/node/pull/31936)
136+
* [[`5484e061b5`](https://github.com/nodejs/node/commit/5484e061b5)] - **test**: scale keepalive timeouts for slow machines (Ben Noordhuis) [#30834](https://github.com/nodejs/node/pull/30834)
137+
* [[`3f9cec3f51`](https://github.com/nodejs/node/commit/3f9cec3f51)] - **test**: add debugging output to test-net-listen-after-destroy-stdin (Rich Trott) [#31698](https://github.com/nodejs/node/pull/31698)
138+
* [[`f1a8791316`](https://github.com/nodejs/node/commit/f1a8791316)] - **test**: allow EAI\_FAIL in test-http-dns-error.js (Colin Ihrig) [#27500](https://github.com/nodejs/node/pull/27500)
139+
* [[`4b9a77909b`](https://github.com/nodejs/node/commit/4b9a77909b)] - **test**: mark tests as flaky (João Reis) [#30848](https://github.com/nodejs/node/pull/30848)
140+
* [[`a8fd8a1a61`](https://github.com/nodejs/node/commit/a8fd8a1a61)] - **test**: mark http2 tests as flaky on 10.x (AshCripps) [#31887](https://github.com/nodejs/node/pull/31887)
141+
* [[`2315270cb6`](https://github.com/nodejs/node/commit/2315270cb6)] - **test**: try to stabalize test-child-process-fork-exec-path.js (Refael Ackermann) [#27277](https://github.com/nodejs/node/pull/27277)
142+
* [[`a2b0e9ef6a`](https://github.com/nodejs/node/commit/a2b0e9ef6a)] - **(SEMVER-MINOR)** **tls**: expose keylog event on TLSSocket (Alba Mendez) [#27654](https://github.com/nodejs/node/pull/27654)
143+
* [[`1cfb45732a`](https://github.com/nodejs/node/commit/1cfb45732a)] - **(SEMVER-MINOR)** **tls**: support TLS min/max protocol defaults in CLI (Sam Roberts) [#27946](https://github.com/nodejs/node/pull/27946)
144+
* [[`a175b8d3a7`](https://github.com/nodejs/node/commit/a175b8d3a7)] - **tools**: only fetch previous versions when necessary (Richard Lau) [#32518](https://github.com/nodejs/node/pull/32518)
145+
* [[`3756be8511`](https://github.com/nodejs/node/commit/3756be8511)] - **tools**: add NODE\_TEST\_NO\_INTERNET to the doc builder (Joyee Cheung) [#31849](https://github.com/nodejs/node/pull/31849)
146+
* [[`ac1ea7312a`](https://github.com/nodejs/node/commit/ac1ea7312a)] - **tools**: make doctool work if no internet available (Richard Lau) [#30214](https://github.com/nodejs/node/pull/30214)
147+
* [[`f235eea8b3`](https://github.com/nodejs/node/commit/f235eea8b3)] - **tools**: unify make-v8.sh for ppc64le and s390x (Richard Lau) [#31628](https://github.com/nodejs/node/pull/31628)
148+
* [[`61e2d4856d`](https://github.com/nodejs/node/commit/61e2d4856d)] - **tools**: use CC instead of CXX when pointing to gcc (Milad Farazmand) [#30817](https://github.com/nodejs/node/pull/30817)
149+
* [[`4390674624`](https://github.com/nodejs/node/commit/4390674624)] - **url**: handle quasi-WHATWG URLs in urlToOptions() (Colin Ihrig) [#26226](https://github.com/nodejs/node/pull/26226)
150+
* [[`dc61e09feb`](https://github.com/nodejs/node/commit/dc61e09feb)] - **v8**: fix load elimination liveness checks (Ben Noordhuis) [#31613](https://github.com/nodejs/node/pull/31613)
151+
62152
<a id="10.19.0"></a>
63153
## 2020-02-06, Version 10.19.0 'Dubnium' (LTS), @BethGriggs
64154

src/node_version.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@
2323
#define SRC_NODE_VERSION_H_
2424

2525
#define NODE_MAJOR_VERSION 10
26-
#define NODE_MINOR_VERSION 19
27-
#define NODE_PATCH_VERSION 1
26+
#define NODE_MINOR_VERSION 20
27+
#define NODE_PATCH_VERSION 0
2828

2929
#define NODE_VERSION_IS_LTS 1
3030
#define NODE_VERSION_LTS_CODENAME "Dubnium"
3131

32-
#define NODE_VERSION_IS_RELEASE 0
32+
#define NODE_VERSION_IS_RELEASE 1
3333

3434
#ifndef NODE_STRINGIFY
3535
#define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)

0 commit comments

Comments
 (0)