Skip to content

Commit 3c277d7

Browse files
committedMar 5, 2019
2019-03-06, Version 11.11.0 (Current)
Notable Changes * n-api: * Implement date object (Jarrod Connolly) #25917 * util: * Add compact depth mode for `util.inspect()` (Ruben Bridgewater) #26269 * worker: * Improve integration with native addons (Anna Henningsen) #26175 * MessagePort.prototype.onmessage takes arguments closer to the Web specification now (Anna Henningsen) #26082
1 parent 2595fbc commit 3c277d7

File tree

5 files changed

+237
-8
lines changed

5 files changed

+237
-8
lines changed
 

‎CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@ release.
2828
</tr>
2929
<tr>
3030
<td valign="top">
31-
<b><a href="doc/changelogs/CHANGELOG_V11.md#11.10.1">11.10.1</a></b><br/>
31+
<b><a href="doc/changelogs/CHANGELOG_V11.md#11.11.0">11.11.0</a></b><br/>
32+
<a href="doc/changelogs/CHANGELOG_V11.md#11.10.1">11.10.1</a><br/>
3233
<a href="doc/changelogs/CHANGELOG_V11.md#11.10.0">11.10.0</a><br/>
3334
<a href="doc/changelogs/CHANGELOG_V11.md#11.9.0">11.9.0</a><br/>
3435
<a href="doc/changelogs/CHANGELOG_V11.md#11.8.0">11.8.0</a><br/>

‎doc/api/n-api.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1530,7 +1530,7 @@ structure, in most cases using a `TypedArray` will suffice.
15301530

15311531
#### napi_create_date
15321532
<!-- YAML
1533-
added: REPLACEME
1533+
added: v11.11.0
15341534
napiVersion: 4
15351535
-->
15361536

@@ -2175,7 +2175,7 @@ This API returns various properties of a `DataView`.
21752175

21762176
#### napi_get_date_value
21772177
<!-- YAML
2178-
added: REPLACEME
2178+
added: v11.11.0
21792179
napiVersion: 4
21802180
-->
21812181

@@ -2784,7 +2784,7 @@ This API checks if the `Object` passed in is a buffer.
27842784

27852785
### napi_is_date
27862786
<!-- YAML
2787-
added: REPLACEME
2787+
added: v11.11.0
27882788
napiVersion: 4
27892789
-->
27902790

‎doc/api/util.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -375,7 +375,7 @@ stream.write('With ES6');
375375
<!-- YAML
376376
added: v0.3.0
377377
changes:
378-
- version: REPLACEME
378+
- version: v11.11.0
379379
pr-url: https://github.com/nodejs/node/pull/26269
380380
description: The `compact` option accepts numbers for a new output mode.
381381
- version: v11.7.0

‎doc/changelogs/CHANGELOG_V11.md

+228
Large diffs are not rendered by default.

‎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 11
26-
#define NODE_MINOR_VERSION 10
27-
#define NODE_PATCH_VERSION 2
26+
#define NODE_MINOR_VERSION 11
27+
#define NODE_PATCH_VERSION 0
2828

2929
#define NODE_VERSION_IS_LTS 0
3030
#define NODE_VERSION_LTS_CODENAME ""
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)
Please sign in to comment.