Skip to content

Commit

Permalink
Merge remote-tracking branch 'refs/remotes/tjanczuk/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
lstratman committed Aug 30, 2016
2 parents b5a34dc 5eef6f6 commit 9f179c1
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion lib/bootstrap/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 11,7 @@
"version": "1.0.0"
},
"Edge.js": "6.4.0",
"Edge.js.CSharp": "1.0.0"
"Edge.js.CSharp": "1.2.0"
}
}
},
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 29,7 @@
}
],
"dependencies": {
"edge-cs": "1.0.0",
"edge-cs": "1.2.1",
"nan": "^2.0.9"
},
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion src/mono/clrfunc.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 243,7 @@ v8::Local<v8::Value> ClrFunc::MarshalCLRToV8(MonoObject* netdata, MonoException*
{
if(enableMarshalEnumAsInt)
{
jsdata = NanNew<v8::Integer>(*(int32_t*)mono_object_unbox(netdata));
jsdata = Nan::New<v8::Integer>(*(int32_t*)mono_object_unbox(netdata));
}
else
{
Expand Down
4 changes: 2 additions & 2 deletions test/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 23,8 @@
"type": "platform",
"version": "1.0.0"
},
"Edge.js": "5.9.2",
"Edge.js.CSharp": "1.0.0"
"Edge.js": "6.4.0",
"Edge.js.CSharp": "1.2.0"
}
}
},
Expand Down

0 comments on commit 9f179c1

Please sign in to comment.