From f1fd87de059d2376e5e23eb60ca6d270f642338e Mon Sep 17 00:00:00 2001 From: John Wellbelove Date: Sat, 28 Sep 2019 12:11:46 +0100 Subject: [PATCH] Updated unit test project to support C++17 --- include/etl/version.h | 2 +- library.json | 2 +- library.properties | 2 +- support/Release notes.txt | 4 ++++ 4 files changed, 7 insertions(+), 3 deletions(-) diff --git a/include/etl/version.h b/include/etl/version.h index ff12863f..85a3e928 100644 --- a/include/etl/version.h +++ b/include/etl/version.h @@ -38,7 +38,7 @@ SOFTWARE. ///\ingroup utilities #define ETL_VERSION_MAJOR 14 -#define ETL_VERSION_MINOR 32 +#define ETL_VERSION_MINOR 33 #define ETL_VERSION_PATCH 0 #define ETL_VERSION ETL_STRINGIFY(ETL_VERSION_MAJOR) "." ETL_STRINGIFY(ETL_VERSION_MINOR) "." ETL_STRINGIFY(ETL_VERSION_PATCH) diff --git a/library.json b/library.json index 269ec094..4d2853b6 100644 --- a/library.json +++ b/library.json @@ -1,6 +1,6 @@ { "name": "Embedded Template Library", - "version": "14.32.0", + "version": "14.33.0", "authors": { "name": "John Wellbelove", "email": "" diff --git a/library.properties b/library.properties index dd22af37..f3715591 100644 --- a/library.properties +++ b/library.properties @@ -1,5 +1,5 @@ name=Embedded Template Library -version=14.32.0 +version=14.33.0 author= John Wellbelove maintainer=John Wellbelove license=MIT diff --git a/support/Release notes.txt b/support/Release notes.txt index 3855bb22..d2bba565 100644 --- a/support/Release notes.txt +++ b/support/Release notes.txt @@ -1,3 +1,7 @@ +=============================================================================== +14.33.0 +Updated unit tests to C++17 + =============================================================================== 14.32.0 Added Platform IO example