Merge pull request #77 from murgatroid99/v1.7.1_changes

Update to 1.7.1, add Node 9 support, fix generated file permissions
This commit is contained in:
Nicolas Noble 2017-11-02 13:35:36 -07:00 committed by GitHub
commit a87f41f8fa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 8 additions and 6 deletions

@ -1 +1 @@
Subproject commit ed9929e2465f3a93d81ae45fa48ed2a82d63e831
Subproject commit 279af9113481890bcc2c554c5d723c0b3c47f707

View File

@ -1,6 +1,6 @@
{
"name": "grpc",
"version": "1.7.0",
"version": "1.7.1",
"author": "Google Inc.",
"description": "gRPC Library for Node",
"homepage": "https://grpc.io/",
@ -31,7 +31,7 @@
"arguejs": "^0.2.3",
"lodash": "^4.15.0",
"nan": "^2.0.0",
"node-pre-gyp": "^0.6.35",
"node-pre-gyp": "^0.6.39",
"protobufjs": "^5.0.0"
},
"devDependencies": {

View File

@ -33,7 +33,7 @@
"arguejs": "^0.2.3",
"lodash": "^4.15.0",
"nan": "^2.0.0",
"node-pre-gyp": "^0.6.35",
"node-pre-gyp": "^0.6.39",
"protobufjs": "^5.0.0"
},
"devDependencies": {

View File

@ -12,7 +12,7 @@
@rem See the License for the specific language governing permissions and
@rem limitations under the License.
set node_versions=4.0.0 5.0.0 6.0.0 7.0.0 8.0.0
set node_versions=4.0.0 5.0.0 6.0.0 7.0.0 8.0.0 9.0.0
set electron_versions=1.0.0 1.1.0 1.2.0 1.3.0 1.4.0 1.5.0 1.6.0 1.7.0

View File

@ -20,6 +20,8 @@ source ~/.nvm/nvm.sh
nvm use 8
set -ex
umask 022
cd $(dirname $0)/../../..
rm -rf build || true
@ -28,7 +30,7 @@ mkdir -p "${ARTIFACTS_OUT}"
npm update
node_versions=( 4.0.0 5.0.0 6.0.0 7.0.0 8.0.0 )
node_versions=( 4.0.0 5.0.0 6.0.0 7.0.0 8.0.0 9.0.0 )
electron_versions=( 1.0.0 1.1.0 1.2.0 1.3.0 1.4.0 1.5.0 1.6.0 1.7.0 )