From 0f0cfd104ef4fcef2288fa88bfbac2af46860a77 Mon Sep 17 00:00:00 2001 From: rob tillaart Date: Tue, 8 Nov 2022 17:02:31 +0100 Subject: [PATCH] 0.1.2 GST --- libraries/GST/.arduino-ci.yml | 23 ++++++++++++++++++++++- libraries/GST/GST.cpp | 2 +- libraries/GST/GST.h | 4 ++-- libraries/GST/changelog.md | 9 ++++++--- libraries/GST/library.json | 2 +- libraries/GST/library.properties | 2 +- 6 files changed, 33 insertions(+), 9 deletions(-) diff --git a/libraries/GST/.arduino-ci.yml b/libraries/GST/.arduino-ci.yml index e7cb4633..7df25445 100644 --- a/libraries/GST/.arduino-ci.yml +++ b/libraries/GST/.arduino-ci.yml @@ -1,3 +1,18 @@ +platforms: + rpipico: + board: rp2040:rp2040:rpipico + package: rp2040:rp2040 + gcc: + features: + defines: + - ARDUINO_ARCH_RP2040 + warnings: + flags: + +packages: + rp2040:rp2040: + url: https://github.com/earlephilhower/arduino-pico/releases/download/global/package_rp2040_index.json + compile: # Choosing to run compilation tests on 2 different Arduino platforms platforms: @@ -8,4 +23,10 @@ compile: - m4 - esp32 # - esp8266 - # - mega2560 \ No newline at end of file + # - mega2560 + - rpipico + + # Declaring Dependent Arduino Libraries (to be installed via the Arduino Library Manager) + libraries: + - "printHelpers" + diff --git a/libraries/GST/GST.cpp b/libraries/GST/GST.cpp index d2dacb5b..fbf01163 100644 --- a/libraries/GST/GST.cpp +++ b/libraries/GST/GST.cpp @@ -1,6 +1,6 @@ // // FILE: GST.cpp -// VERSION: 0.1.1 +// VERSION: 0.1.2 // PURPOSE: Arduino library for Gold Standard Test metrics // URL: https://github.com/RobTillaart/GST // https://en.wikipedia.org/wiki/Sensitivity_and_specificity diff --git a/libraries/GST/GST.h b/libraries/GST/GST.h index 5103073e..fd18e756 100644 --- a/libraries/GST/GST.h +++ b/libraries/GST/GST.h @@ -1,7 +1,7 @@ #pragma once // // FILE: GST.h -// VERSION: 0.1.1 +// VERSION: 0.1.2 // PURPOSE: Arduino library for Gold Standard Test metrics // URL: https://github.com/RobTillaart/GST // https://en.wikipedia.org/wiki/Sensitivity_and_specificity @@ -9,7 +9,7 @@ // // formula's based upon Wikipedia. -#define GST_LIB_VERSION (F("0.1.1")) +#define GST_LIB_VERSION (F("0.1.2")) #include "Arduino.h" diff --git a/libraries/GST/changelog.md b/libraries/GST/changelog.md index 8fcf132b..55741df7 100644 --- a/libraries/GST/changelog.md +++ b/libraries/GST/changelog.md @@ -2,8 +2,12 @@ # GST Changelog -## 0.1.1 2022-06-08 +## [0.1.2] - 2022-11-08 +- add RP2040 to build CI +- update changelog.md + +## [0.1.1] - 2022-06-08 - add **addTruePositive()** etc functions. - add defaults for **setTruePositive(value = 0)** etc functions - add long descriptive names for the short functions. @@ -12,8 +16,7 @@ - split off GST.cpp file, prevent - https://github.com/RobTillaart/CRC/issues/21 -## 0.1.0 2022-02-25 - +## [0.1.0] - 2022-02-25 - initial version - diff --git a/libraries/GST/library.json b/libraries/GST/library.json index f5bafe8c..5855da44 100644 --- a/libraries/GST/library.json +++ b/libraries/GST/library.json @@ -15,7 +15,7 @@ "type": "git", "url": "https://github.com/RobTillaart/GST.git" }, - "version": "0.1.1", + "version": "0.1.2", "license": "MIT", "frameworks": "arduino", "platforms": "*", diff --git a/libraries/GST/library.properties b/libraries/GST/library.properties index e9725827..d94cf7d3 100644 --- a/libraries/GST/library.properties +++ b/libraries/GST/library.properties @@ -1,5 +1,5 @@ name=GST -version=0.1.1 +version=0.1.2 author=Rob Tillaart maintainer=Rob Tillaart sentence=Arduino library for Golden Standard Test, confusion matrix.