fix library.json

This commit is contained in:
rob tillaart 2020-06-19 11:07:26 +02:00
parent cbe47eebbd
commit e79a9a36b7
4 changed files with 9 additions and 11 deletions

View file

@ -2,7 +2,7 @@
// FILE: Statistic.cpp // FILE: Statistic.cpp
// AUTHOR: Rob dot Tillaart at gmail dot com // AUTHOR: Rob dot Tillaart at gmail dot com
// modified at 0.3 by Gil Ross at physics dot org // modified at 0.3 by Gil Ross at physics dot org
// VERSION: 0.4.0 // VERSION: 0.4.1
// PURPOSE: Recursive statistical library for Arduino // PURPOSE: Recursive statistical library for Arduino
// //
// NOTE: 2011-01-07 Gill Ross // NOTE: 2011-01-07 Gill Ross
@ -52,7 +52,8 @@
// 0.4.0 2020-05-13 // 0.4.0 2020-05-13
// refactor // refactor
// Added flag to switch on the use of stdDev runtime. [idea marc.recksiedl] // Added flag to switch on the use of stdDev runtime. [idea marc.recksiedl]
// 0.4.1 2020-06-19 fix library.json
//
#include "Statistic.h" #include "Statistic.h"

View file

@ -3,7 +3,7 @@
// FILE: Statistic.h // FILE: Statistic.h
// AUTHOR: Rob dot Tillaart at gmail dot com // AUTHOR: Rob dot Tillaart at gmail dot com
// modified at 0.3 by Gil Ross at physics dot org // modified at 0.3 by Gil Ross at physics dot org
// VERSION: 0.4.0 // VERSION: 0.4.1
// PURPOSE: Recursive Statistical library for Arduino // PURPOSE: Recursive Statistical library for Arduino
// HISTORY: See Statistic.cpp // HISTORY: See Statistic.cpp
// //
@ -11,7 +11,7 @@
#include <Arduino.h> #include <Arduino.h>
#include <math.h> #include <math.h>
#define STATISTIC_LIB_VERSION "0.4.0" #define STATISTIC_LIB_VERSION "0.4.1"
class Statistic class Statistic
{ {

View file

@ -16,12 +16,9 @@
"repository": "repository":
{ {
"type": "git", "type": "git",
"url": "https://github.com/RobTillaart/Arduino.git" "url": "https://github.com/RobTillaart/Statistic.git"
}, },
"version":"0.4.0", "version":"0.4.1",
"frameworks": "arduino", "frameworks": "arduino",
"platforms": "*", "platforms": "*"
"export": {
"include": "libraries/Statistic"
}
} }

View file

@ -1,5 +1,5 @@
name=Statistic name=Statistic
version=0.4.0 version=0.4.1
author=Rob Tillaart <rob.tillaart@gmail.com> author=Rob Tillaart <rob.tillaart@gmail.com>
maintainer=Rob Tillaart <rob.tillaart@gmail.com> maintainer=Rob Tillaart <rob.tillaart@gmail.com>
sentence=Library with basic statistical functions for Arduino. sentence=Library with basic statistical functions for Arduino.