Skip to content

Commit

Permalink
bump to v0.6.7 fixing io.js node_abi - refs nodejs/build#94
Browse files Browse the repository at this point in the history
  • Loading branch information
Dane Springmeyer committed May 6, 2015
1 parent c00df8e commit ebf9885
Show file tree
Hide file tree
Showing 5 changed files with 33 additions and 18 deletions.
2 changes: 2 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ env:
matrix:
- NODE_VERSION="0.10.38"
- NODE_VERSION="0.12.2"
- NODE_VERSION="1.0.4"
- NODE_VERSION="1.8.1"
- NODE_VERSION="2.0.0"
global:
- secure: nxPEbegqL+ckZ03BvGJSOlfcNuoJvj+rkLbBmmOEuTrk79lvY0+gjpmvWu4gGXMt89Vz+iAJB29ERaUdriKzlmYmebhWEdwQ/aayUv2sNA0eduvr4TALW2iLfLqryeE4449xnuEvz469AVWxO8xoX9KgmrwTLnkMR9SbQHxB6jU=
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# node-pre-gyp changelog

## 0.6.7

- Fixed `node_abi` versions for io.js 1.1.x -> 1.8.x (should be 43, but was stored as 42) (refs https://github.com/iojs/build/issues/94)

## 0.6.6

- Updated with known io.js 2.0.0 version
Expand Down
38 changes: 23 additions & 15 deletions lib/util/abi_crosswalk.json
Original file line number Diff line number Diff line change
Expand Up @@ -263,6 +263,14 @@
"node_abi": 11,
"v8": "3.14"
},
"0.10.37": {
"node_abi": 11,
"v8": "3.14"
},
"0.10.38": {
"node_abi": 11,
"v8": "3.14"
},
"0.11.0": {
"node_abi": 12,
"v8": "3.17"
Expand Down Expand Up @@ -364,63 +372,63 @@
"v8": "4.1"
},
"1.1.0": {
"node_abi": 42,
"node_abi": 43,
"v8": "4.1"
},
"1.2.0": {
"node_abi": 42,
"node_abi": 43,
"v8": "4.1"
},
"1.3.0": {
"node_abi": 42,
"node_abi": 43,
"v8": "4.1"
},
"1.4.1": {
"node_abi": 42,
"node_abi": 43,
"v8": "4.1"
},
"1.4.2": {
"node_abi": 42,
"node_abi": 43,
"v8": "4.1"
},
"1.4.3": {
"node_abi": 42,
"node_abi": 43,
"v8": "4.1"
},
"1.5.0": {
"node_abi": 42,
"node_abi": 43,
"v8": "4.1"
},
"1.5.1": {
"node_abi": 42,
"node_abi": 43,
"v8": "4.1"
},
"1.6.0": {
"node_abi": 42,
"node_abi": 43,
"v8": "4.1"
},
"1.6.1": {
"node_abi": 42,
"node_abi": 43,
"v8": "4.1"
},
"1.6.2": {
"node_abi": 42,
"node_abi": 43,
"v8": "4.1"
},
"1.6.3": {
"node_abi": 42,
"node_abi": 43,
"v8": "4.1"
},
"1.6.4": {
"node_abi": 42,
"node_abi": 43,
"v8": "4.1"
},
"1.7.1": {
"node_abi": 42,
"node_abi": 43,
"v8": "4.1"
},
"1.8.1": {
"node_abi": 42,
"node_abi": 43,
"v8": "4.1"
},
"2.0.0": {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "node-pre-gyp",
"description": "Node.js native addon binary install tool",
"version" : "0.6.6",
"version" : "0.6.7",
"keywords": [
"native",
"addon",
Expand Down
5 changes: 3 additions & 2 deletions scripts/abi_crosswalk.js
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ if (update_node) {
for (var i=0;i<=28;++i) {
lines.push('0.8.'+i);
}
for (var i=0;i<=36;++i) {
for (var i=0;i<=38;++i) {
lines.push('0.10.'+i);
}
for (var i=0;i<=16;++i) {
Expand All @@ -141,7 +141,8 @@ if (update_node) {

// IO.js
// thanks to rvagg, this is so simple
https.get('https://iojs.org/download//release/index.json', function(res) {
// https://github.com/iojs/build/issues/94
https.get('https://iojs.org/download/release/index.json', function(res) {
if (res.statusCode != 200 ) {
throw new Error("server returned " + res.statusCode + ' for iojs.org');
}
Expand Down

0 comments on commit ebf9885

Please sign in to comment.