From 98c74bfda874f6a659bd95f8451b17d321d0b4e3 Mon Sep 17 00:00:00 2001 From: John Wellbelove Date: Tue, 4 Jul 2023 18:57:44 +0100 Subject: [PATCH] Updated version and release notes --- arduino/library-arduino.json | 2 +- arduino/library-arduino.properties | 2 +- include/etl/version.h | 4 ++-- library.json | 2 +- library.properties | 2 +- support/Release notes.txt | 3 +++ 6 files changed, 9 insertions(+), 6 deletions(-) diff --git a/arduino/library-arduino.json b/arduino/library-arduino.json index e6febba7..13c8b886 100644 --- a/arduino/library-arduino.json +++ b/arduino/library-arduino.json @@ -1,6 +1,6 @@ { "name": "Embedded Template Library - Arduino", - "version": "20.36.1", + "version": "20.37.0", "authors": { "name": "John Wellbelove", "email": "john.wellbelove@etlcpp.com" diff --git a/arduino/library-arduino.properties b/arduino/library-arduino.properties index fe5bce62..54329e4c 100644 --- a/arduino/library-arduino.properties +++ b/arduino/library-arduino.properties @@ -1,5 +1,5 @@ name=Embedded Template Library - Arduino -version=20.36.1 +version=20.37.0 author= John Wellbelove maintainer=John Wellbelove license=MIT diff --git a/include/etl/version.h b/include/etl/version.h index 749c5761..65798392 100644 --- a/include/etl/version.h +++ b/include/etl/version.h @@ -39,8 +39,8 @@ SOFTWARE. ///\ingroup utilities #define ETL_VERSION_MAJOR 20 -#define ETL_VERSION_MINOR 36 -#define ETL_VERSION_PATCH 1 +#define ETL_VERSION_MINOR 37 +#define ETL_VERSION_PATCH 0 #define ETL_VERSION ETL_STRING(ETL_VERSION_MAJOR) "." ETL_STRING(ETL_VERSION_MINOR) "." ETL_STRING(ETL_VERSION_PATCH) #define ETL_VERSION_W ETL_WIDE_STRING(ETL_VERSION_MAJOR) L"." ETL_WIDE_STRING(ETL_VERSION_MINOR) L"." ETL_WIDE_STRING(ETL_VERSION_PATCH) diff --git a/library.json b/library.json index 8c12eaaa..5babfa9c 100644 --- a/library.json +++ b/library.json @@ -1,6 +1,6 @@ { "name": "Embedded Template Library", - "version": "20.36.1", + "version": "20.37.0", "authors": { "name": "John Wellbelove", "email": "john.wellbelove@etlcpp.com" diff --git a/library.properties b/library.properties index 295a0ae2..de9beedf 100644 --- a/library.properties +++ b/library.properties @@ -1,5 +1,5 @@ name=Embedded Template Library -version=20.36.1 +version=20.37.0 author= John Wellbelove maintainer=John Wellbelove license=MIT diff --git a/support/Release notes.txt b/support/Release notes.txt index e3c6f61e..c4ec7108 100644 --- a/support/Release notes.txt +++ b/support/Release notes.txt @@ -6,6 +6,9 @@ #711 Added etl::is_forward_link, etl::is_bidirectional_link and etl::is_tree_link to intrusive links. Added Constructors, access and status member functions to intrusive links. #712 Unable to use etl::optional with non-default-constructible POD objects. +#716 etl::variant (variant_varadic) default constructed state +#720 etl::optional rvalue value_or() broken +#722 Bitset accesses memory out of bounds Modified etl::visitor to allow direct specification of the argument type. Added etl::is_visitor trait. Removed default link type for etl::intrusive_list and etl::intrusive_forward_list