Bump version to "0.20.1"
This commit is contained in:
parent
19f9d57f1a
commit
e0d3ffbe22
|
@ -304,6 +304,8 @@ on the [https://github.com/hybridgroup/cylon-site](https://github.com/hybridgrou
|
|||
|
||||
## Release History
|
||||
|
||||
Version 0.20.1 - Revert accidental scrict handling of param in driver initializer
|
||||
|
||||
Version 0.20.0 - Browser support, new module loading, log level support, misc.
|
||||
development changes
|
||||
|
||||
|
|
|
@ -25,7 +25,7 @@ var Driver = module.exports = function Driver(opts) {
|
|||
this.name = opts.name;
|
||||
|
||||
this.device = opts.device;
|
||||
this.connection = opts.connection;
|
||||
this.connection = opts.device.connection;
|
||||
this.adaptor = this.connection.adaptor;
|
||||
|
||||
this.interval = opts.interval || 10;
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "cylon",
|
||||
"version": "0.20.0",
|
||||
"version": "0.20.1",
|
||||
"main": "lib/cylon.js",
|
||||
"description": "A JavaScript robotics framework for Node.js",
|
||||
"homepage": "http://cylonjs.com",
|
||||
|
|
Loading…
Reference in New Issue