version bump 1.0.2: pin devDependencies

This commit is contained in:
SheetJS 2017-07-27 14:17:28 -04:00
parent 1c7de2c8f7
commit 616aabfb42
5 changed files with 7 additions and 7 deletions

View File

@ -23,7 +23,7 @@ var BESSEL;
}
/*jshint ignore:end */
}(function(BESSEL) {
BESSEL.version = '1.0.0';
BESSEL.version = '1.0.2';
var M = Math;
/*::

View File

@ -21,7 +21,7 @@ var BESSEL;
}
/*jshint ignore:end */
}(function(BESSEL) {
BESSEL.version = '1.0.0';
BESSEL.version = '1.0.2';
var M = Math;
function _horner(arr, v) { for(var i = 0, z = 0; i < arr.length; ++i) z = v * z + arr[i]; return z; }

View File

@ -1 +1 @@
BESSEL.version = '1.0.0';
BESSEL.version = '1.0.2';

View File

@ -21,7 +21,7 @@ var BESSEL;
}
/*jshint ignore:end */
}(function(BESSEL) {
BESSEL.version = '1.0.0';
BESSEL.version = '1.0.2';
var M = Math;
function _horner(arr, v) { for(var i = 0, z = 0; i < arr.length; ++i) z = v * z + arr[i]; return z; }

View File

@ -1,6 +1,6 @@
{
"name": "bessel",
"version": "1.0.1",
"version": "1.0.2",
"author": "SheetJS",
"description": "Pure-JS Bessel Functions",
"keywords": [ "bessel", "math", "specfun" ],
@ -8,8 +8,8 @@
"dependencies": {
},
"devDependencies": {
"mocha":"",
"voc":""
"mocha":"~2.5.3",
"voc":"~1.0.0"
},
"repository": { "type":"git", "url":"git://github.com/SheetJS/bessel.git" },
"scripts": {