Skip to content

Commit

Permalink
add latest node versions
Browse files Browse the repository at this point in the history
  • Loading branch information
Dane Springmeyer committed Jul 7, 2015
1 parent 7e8d308 commit ff72f35
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 2 deletions.
24 changes: 24 additions & 0 deletions lib/util/abi_crosswalk.json
Original file line number Diff line number Diff line change
Expand Up @@ -271,6 +271,10 @@
"node_abi": 11,
"v8": "3.14"
},
"0.10.39": {
"node_abi": 11,
"v8": "3.14"
},
"0.11.0": {
"node_abi": 12,
"v8": "3.17"
Expand Down Expand Up @@ -359,6 +363,14 @@
"node_abi": 14,
"v8": "3.28"
},
"0.12.5": {
"node_abi": 14,
"v8": "3.28"
},
"0.12.6": {
"node_abi": 14,
"v8": "3.28"
},
"1.0.0": {
"node_abi": 42,
"v8": "3.31"
Expand Down Expand Up @@ -443,6 +455,10 @@
"node_abi": 43,
"v8": "4.1"
},
"1.8.3": {
"node_abi": 43,
"v8": "4.1"
},
"2.0.0": {
"node_abi": 44,
"v8": "4.2"
Expand Down Expand Up @@ -474,5 +490,13 @@
"2.3.1": {
"node_abi": 44,
"v8": "4.2"
},
"2.3.2": {
"node_abi": 44,
"v8": "4.2"
},
"2.3.3": {
"node_abi": 44,
"v8": "4.2"
}
}
4 changes: 2 additions & 2 deletions scripts/abi_crosswalk.js
Original file line number Diff line number Diff line change
Expand Up @@ -121,13 +121,13 @@ if (update_node) {
for (var i=0;i<=28;++i) {
lines.push('0.8.'+i);
}
for (var i=0;i<=38;++i) {
for (var i=0;i<=39;++i) {
lines.push('0.10.'+i);
}
for (var i=0;i<=16;++i) {
lines.push('0.11.'+i);
}
for (var i=0;i<=4;++i) {
for (var i=0;i<=6;++i) {
lines.push('0.12.'+i);
}
lines.forEach(function(ver) {
Expand Down

0 comments on commit ff72f35

Please sign in to comment.