diff --git a/History.md b/History.md index 9508b5b20f..b8118e0cb8 100644 --- a/History.md +++ b/History.md @@ -2,6 +2,8 @@ ## v1.4.1 +* Node has been upgraded to 4.5.0. + * The `meteor publish-for-arch` command is no longer necessary when publishing Meteor packages with binary npm dependencies. Instead, binary dependencies will be rebuilt automatically on the installation side. diff --git a/scripts/build-dev-bundle-common.sh b/scripts/build-dev-bundle-common.sh index 325f6f4994..64265d26fa 100644 --- a/scripts/build-dev-bundle-common.sh +++ b/scripts/build-dev-bundle-common.sh @@ -6,7 +6,7 @@ set -u UNAME=$(uname) ARCH=$(uname -m) MONGO_VERSION=3.2.6 -NODE_VERSION=4.4.7 +NODE_VERSION=4.5.0 NPM_VERSION=3.10.5 if [ "$UNAME" == "Linux" ] ; then diff --git a/scripts/generate-dev-bundle.ps1 b/scripts/generate-dev-bundle.ps1 index 6e9ec54562..f1f6f97c84 100644 --- a/scripts/generate-dev-bundle.ps1 +++ b/scripts/generate-dev-bundle.ps1 @@ -2,7 +2,7 @@ # use 32bit by default $PLATFORM = "windows_x86" $MONGO_VERSION = "3.2.6" -$NODE_VERSION = "4.4.7" +$NODE_VERSION = "4.5.0" $NPM_VERSION = "3.10.5" $PYTHON_VERSION = "2.7.10" # For node-gyp