From d12af6f7f14b42bd4c53243f2772f0f2bd35a4f9 Mon Sep 17 00:00:00 2001 From: Simon Date: Tue, 5 Feb 2019 10:20:17 -0800 Subject: [PATCH 1/5] misc: add arduino sketch path to config - this change also fixes the 'platformio_example' path --- library.json | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/library.json b/library.json index 448c277f..b676b5b0 100644 --- a/library.json +++ b/library.json @@ -62,8 +62,9 @@ ] }, "examples": [ - "[Ee]xamples/platformio_example/*.ino", - "[Ee]xamples/platformio_example/*.cpp", - "[Ee]xamples/platformio_example/*.c" + "[Ee]xamples/arduino/*/*.ino", + "[Ee]xamples/platformio_example/*/*.ino", + "[Ee]xamples/platformio_example/*/*.cpp", + "[Ee]xamples/platformio_example/*/*.c" ] } From 7e952a5519e8e3835b0a8652aee9d552579c4a99 Mon Sep 17 00:00:00 2001 From: Simon Date: Tue, 5 Feb 2019 10:24:54 -0800 Subject: [PATCH 2/5] Revert "misc: add arduino sketch path to config" This reverts commit d12af6f7f14b42bd4c53243f2772f0f2bd35a4f9. --- library.json | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/library.json b/library.json index b676b5b0..448c277f 100644 --- a/library.json +++ b/library.json @@ -62,9 +62,8 @@ ] }, "examples": [ - "[Ee]xamples/arduino/*/*.ino", - "[Ee]xamples/platformio_example/*/*.ino", - "[Ee]xamples/platformio_example/*/*.cpp", - "[Ee]xamples/platformio_example/*/*.c" + "[Ee]xamples/platformio_example/*.ino", + "[Ee]xamples/platformio_example/*.cpp", + "[Ee]xamples/platformio_example/*.c" ] } From cf6368b552e1eeb0e0c6384e86ee98aa7cc493eb Mon Sep 17 00:00:00 2001 From: Simon Date: Fri, 15 Feb 2019 14:00:03 -0800 Subject: [PATCH 3/5] chore: bump version '1.1.0' >> '1.2.0'. --- CHANGELOG.md | 18 ++++++++++++++++++ library.json | 2 +- library.properties | 2 +- 3 files changed, 20 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4c9ae0d9..f694a020 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,24 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## Unreleased +## [1.2.0] - 2019-02-16 +## [1.2.0-arduino] - 2019-02-16 + +### Added +- Arduino CircleCI config + +### Changed +- updated `keywords.txt`. +- updated `./library.json` package export settings. +- removed unnecessary files: + - `./appveyor.yml`. + - `./CMakeSettings.json`. + - submodule from `cmake_example`. +- removed `./src/stl` library. +- moved `./docs` to `./extras` in arduino builds. +- automated `ARDUINO_IDE.sh` script. +- updated `ARDUINO_IDE.sh` script to reflect `lib/` changes. + ## [1.1.0] - 2019-02-07 ### Added diff --git a/library.json b/library.json index d3b99749..ee99d372 100644 --- a/library.json +++ b/library.json @@ -7,7 +7,7 @@ "type": "git", "url": "https://github.com/ArkEcosystem/Cpp-Client.git" }, - "version": "1.1.0", + "version": "1.2.0", "authors": [ { "name": "Ark Ecosystem", diff --git a/library.properties b/library.properties index f23c49ea..1c342a6c 100644 --- a/library.properties +++ b/library.properties @@ -1,5 +1,5 @@ name=Ark-Cpp-Client -version=1.1.0 +version=1.2.0 author=Ark Ecosystem maintainer=Ark Ecosystem sentence=A simple API client implementation in C++ for the ARK Blockchain. From 9fddb984c048b92cf238ceaa3be144c628ebc925 Mon Sep 17 00:00:00 2001 From: Simon Date: Sat, 16 Feb 2019 14:21:24 -0800 Subject: [PATCH 4/5] fix: add helper file - contains tags related to PIO builds and board library selection. --- src/include/cpp-client/arkClient.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/include/cpp-client/arkClient.h b/src/include/cpp-client/arkClient.h index eb43e354..3ff8c633 100644 --- a/src/include/cpp-client/arkClient.h +++ b/src/include/cpp-client/arkClient.h @@ -10,6 +10,7 @@ #ifndef ARKCLIENT_H #define ARKCLIENT_H +#include "helpers/client_helpers.h" #include "connection/connection.h" #endif From 13aed2edd274d38a7f08b6fd8720cc49f416d42b Mon Sep 17 00:00:00 2001 From: Simon Date: Sat, 16 Feb 2019 16:02:57 -0800 Subject: [PATCH 5/5] fix: export './docs' and './extras' folder --- library.json | 2 ++ 1 file changed, 2 insertions(+) diff --git a/library.json b/library.json index ee99d372..27f9fddc 100644 --- a/library.json +++ b/library.json @@ -21,6 +21,8 @@ "include": [ "src/*", "examples/*", + "docs/*", + "extras/*", "*.md", "*.json", "*.properties",