diff --git a/CHANGELOG.md b/CHANGELOG.md index 4f190ea355fc..c363a3db6765 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -26,7 +26,8 @@ release. -6.14.0
+6.14.1
+6.14.0
6.13.1
6.13.0
6.12.3
diff --git a/doc/changelogs/CHANGELOG_V6.md b/doc/changelogs/CHANGELOG_V6.md index 267b28b8373a..f84e43d8398c 100644 --- a/doc/changelogs/CHANGELOG_V6.md +++ b/doc/changelogs/CHANGELOG_V6.md @@ -7,6 +7,7 @@ +6.14.1
6.14.0
6.13.1
6.13.0
@@ -61,6 +62,18 @@ [Node.js Long Term Support Plan](https://github.com/nodejs/LTS) and will be supported actively until April 2018 and maintained until April 2019. + +## 2018-03-29, Version 6.14.1 'Boron' (LTS), @MylesBorins + +### Notable Changes + +No additional commits. + +Due to incorrect staging of the upgrade to the GCC 4.9.X compiler, the latest releases for PPC little +endian were built using GCC 4.9.X instead of GCC 4.8.X. This caused an ABI breakage on PPCLE based +environments. This has been fixed in our infrastructure and we are doing this release to ensure that +the hosted binaries are adhering to our platform support contract. + ## 2018-03-28, Version 6.14.0 'Boron' (LTS), @MylesBorins diff --git a/src/node_version.h b/src/node_version.h index ae3ccc595365..2e420c60f437 100644 --- a/src/node_version.h +++ b/src/node_version.h @@ -3,7 +3,7 @@ #define NODE_MAJOR_VERSION 6 #define NODE_MINOR_VERSION 14 -#define NODE_PATCH_VERSION 0 +#define NODE_PATCH_VERSION 1 #define NODE_VERSION_IS_LTS 1 #define NODE_VERSION_LTS_CODENAME "\x42\x6f\x72\x6f\x6e"