Skip to content

Commit 13d804c

Browse files
committed
Merge pull request #584 from nodegit/bump-nan
Bump nan
2 parents 15d67b3 + 2c4f68e commit 13d804c

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ env:
22
matrix:
33
- export NODE_VERSION="0.10"
44
- export NODE_VERSION="0.12"
5-
- export NODE_VERSION="iojs-v1"
5+
- export NODE_VERSION="iojs"
66
matrix:
77
fast_finish: true
88
before_install:

appveyor.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@ environment:
2323
- nodejs_version: "0.10"
2424
- nodejs_version: "0.12"
2525
# io.js
26-
- nodejs_version: "1"
26+
- nodejs_version: "2"
2727

2828
matrix:
2929
fast_finish: true
3030
allow_failures:
3131
- nodejs_version: "0.10"
32-
- nodejs_version: "1"
32+
- nodejs_version: "2"
3333

3434
# Get the latest stable version of Node 0.STABLE.latest
3535
install:

generate/templates/partials/field_accessors.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
NanReturnValue(NanNew((int)wrapper->GetValue()->{{ field.name }}));
1010

1111
{% elsif field.isLibgitType | or field.payloadFor %}
12-
NanReturnValue(wrapper->{{ field.name }});
12+
NanReturnValue(NanNew(wrapper->{{ field.name }}));
1313

1414
{% elsif field.isCallbackFunction %}
1515
NanReturnValue(wrapper->{{ field.name }}->GetFunction());

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212
"version": "1.4.3"
1313
},
1414
"http_parser": {
15-
"url": "https://github.com/joyent/http-parser/archive/v2.4.2.tar.gz",
16-
"version": "2.4.2",
15+
"url": "https://github.com/joyent/http-parser/archive/v2.5.0.tar.gz",
16+
"version": "2.5.0",
1717
"0.1": {
1818
"url": "https://github.com/joyent/http-parser/archive/v2.0.tar.gz",
1919
"version": "2.0.0"
@@ -70,7 +70,7 @@
7070
"lcov-result-merger": "^1.0.2",
7171
"lodash": "^3.8.0",
7272
"mocha": "^2.2.4",
73-
"nan": "~1.7.0",
73+
"nan": "^1.8.4",
7474
"nw-gyp": "^0.12.4",
7575
"pangyp": "^2.1.0",
7676
"request": "^2.55.0",

0 commit comments

Comments
 (0)