Skip to content

Commit

Permalink
Auto-merge for PR #284 via VersionBot
Browse files Browse the repository at this point in the history
fix(src): Fix nan callback deprecation warning
  • Loading branch information
resin-io-modules-versionbot[bot] authored May 25, 2018
2 parents 593fc2d + a534c21 commit 438debb
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file
automatically by Versionist. DO NOT EDIT THIS FILE MANUALLY!
This project adheres to [Semantic Versioning](http://semver.org/).

## v6.2.3 - 2018-05-25

* Fix(src): Fix nan callback deprecation warning #284 [Jonas Hermsmeier]

## v6.2.2 - 2018-05-10

* Fix(ci): Fix Node version arg passed to prebuild script #280 [Jonas Hermsmeier]
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "drivelist",
"version": "6.2.2",
"version": "6.2.3",
"description": "List all connected drives in your computer, in all major operating systems",
"main": "lib/drivelist.js",
"homepage": "https://github.com/resin-io-modules/drivelist",
Expand Down
2 changes: 1 addition & 1 deletion src/drivelist.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ class DriveListWorker : public Nan::AsyncWorker {
}

v8::Local<v8::Value> argv[] = { Nan::Null(), drives };
callback->Call(2, argv);
callback->Call(2, argv, async_resource);
}

private:
Expand Down

0 comments on commit 438debb

Please sign in to comment.