Skip to content

Commit c8ed416

Browse files
Working on Node.js for Mobile Apps v0.3.2
1 parent 2085766 commit c8ed416

File tree

3 files changed

+25
-3
lines changed

3 files changed

+25
-3
lines changed

doc_mobile/CHANGELOG.md

Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
</tr>
77
<tr>
88
<td>
9+
<a href="#0.3.1">0.3.1</a><br/>
910
<a href="#0.3.0">0.3.0</a><br/>
1011
<a href="#0.2.2">0.2.2</a><br/>
1112
<a href="#0.2.1">0.2.1</a><br/>
@@ -24,8 +25,28 @@
2425
</tr>
2526
</table>
2627

28+
<a id="0.3.1"></a>
29+
## 2020-05-25, Version 0.3.1 (Current)
30+
31+
### Notable Changes
32+
33+
* Updates the node engine version to 12.16.3 LTS.
34+
* Released binaries are now built with ndk r21b on Android.
35+
* Fix error when building Android binaries on Linux.
36+
37+
### Commits
38+
39+
* [[`2085766259`](https://github.com/janeasystems/nodejs-mobile/commit/20857662598a6a258d65a52f89a60653a92724ac)] - Node.js on Mobile v0.3.1 (Jaime Bernardo)
40+
* [[`12751bc4e3`](https://github.com/janeasystems/nodejs-mobile/commit/12751bc4e37ef9c640dd9379a7b4a16a121e93ef)] - doc: use NDK r21b for building (Jaime Bernardo)
41+
* [[`5cea85f8bb`](https://github.com/janeasystems/nodejs-mobile/commit/5cea85f8bb6e1a2ba2cbccaaa5b61e491c1ecc9a)] - test: fix mobile tests for 12.16.3 (Jaime Bernardo)
42+
* [[`31f23350b9`](https://github.com/janeasystems/nodejs-mobile/commit/31f23350b946a25644f76804451be41b68c1a5bf)] - android,build: different host flags for linking (Jaime Bernardo)
43+
* [[`e6817bd72e`](https://github.com/janeasystems/nodejs-mobile/commit/e6817bd72e432828da01bed42a3f8ac2b22a92f6)] - Merge node v12.16.3 (Jaime Bernardo)
44+
* [[`eaaef04170`](https://github.com/janeasystems/nodejs-mobile/commit/eaaef04170923fbcdbbb05a94f986179df4fe264)] - test,ios: don't skip empty UDP packet tests (Jaime Bernardo)
45+
* [[`a3e9ae90d0`](https://github.com/janeasystems/nodejs-mobile/commit/a3e9ae90d0f33ef9540ef40592b892f705d785d2)] - android,build: fix linking when building for host (Jaime Bernardo)
46+
* [[`a39af27170`](https://github.com/janeasystems/nodejs-mobile/commit/a39af27170bc49e5ff97480c4118b2f6ac72ac5c)] - Working on Node.js for Mobile Apps v0.3.1 (Jaime Bernardo)
47+
2748
<a id="0.3.0"></a>
28-
## 2020-04-27, Version 0.3.0 (Current)
49+
## 2020-04-27, Version 0.3.0
2950

3051
### Notable Changes
3152

@@ -35,6 +56,7 @@
3556
* Uses V8 snapshots on Android.
3657

3758
### Commits
59+
3860
* [[`358217dfc1`](https://github.com/janeasystems/nodejs-mobile/commit/358217dfc1f55e2883264ea561902446ab41972b)] - Node.js on Mobile v0.3.0 (Jaime Bernardo)
3961
* [[`7c94e290e4`](https://github.com/janeasystems/nodejs-mobile/commit/7c94e290e41992678ab8f0616f3e6f1b6a8bdeeb)] - ios: add podspec to enable use with CocoaPods (Igor Makarov)
4062
* [[`dbaedc97f8`](https://github.com/janeasystems/nodejs-mobile/commit/dbaedc97f8963b1356e4fc8c70f463d2092b6a89)] - doc: update docs to V8 on iOS changes (Jaime Bernardo)

src/node_mobile_version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
#define NODE_MOBILE_MAJOR_VERSION 0
77
#define NODE_MOBILE_MINOR_VERSION 3
8-
#define NODE_MOBILE_PATCH_VERSION 1
8+
#define NODE_MOBILE_PATCH_VERSION 2
99

1010
#define NODE_MOBILE_VERSION_IS_RELEASE NODE_VERSION_IS_RELEASE
1111

src/node_version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
#define NODE_VERSION_IS_LTS 1
3030
#define NODE_VERSION_LTS_CODENAME "Erbium"
3131

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

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

0 commit comments

Comments
 (0)