From 9850ad2c532619db5c7ee082a14c5049496c6b96 Mon Sep 17 00:00:00 2001 From: John Wellbelove Date: Mon, 11 Apr 2022 20:01:29 +0200 Subject: [PATCH] Sync to 20.27.3 --- library.json | 2 +- library.properties | 2 +- src/etl/reference_counted_message_pool.h | 4 ++-- src/etl/version.h | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/library.json b/library.json index c4ec1c5..2d4c2e0 100644 --- a/library.json +++ b/library.json @@ -1,6 +1,6 @@ { "name": "Embedded Template Library - Arduino", - "version": "20.27.2", + "version": "20.27.3", "authors": { "name": "John Wellbelove", "email": "john.wellbelove@etlcpp.com" diff --git a/library.properties b/library.properties index 227f213..4747b7a 100644 --- a/library.properties +++ b/library.properties @@ -1,5 +1,5 @@ name=Embedded Template Library - Arduino -version=20.27.2 +version=20.27.3 author= John Wellbelove maintainer=John Wellbelove license=MIT diff --git a/src/etl/reference_counted_message_pool.h b/src/etl/reference_counted_message_pool.h index ba0317d..0fb2b6e 100644 --- a/src/etl/reference_counted_message_pool.h +++ b/src/etl/reference_counted_message_pool.h @@ -61,7 +61,7 @@ namespace etl //*************************************************************************** /// Exception if the allocation failed. //*************************************************************************** - class reference_counted_message_pool_allocation_failure : etl::reference_counted_message_pool_exception + class reference_counted_message_pool_allocation_failure : public etl::reference_counted_message_pool_exception { public: @@ -74,7 +74,7 @@ namespace etl //*************************************************************************** /// Exception if the release failed. //*************************************************************************** - class reference_counted_message_pool_release_failure : etl::reference_counted_message_pool_exception + class reference_counted_message_pool_release_failure : public etl::reference_counted_message_pool_exception { public: diff --git a/src/etl/version.h b/src/etl/version.h index 21cb51e..7823b46 100644 --- a/src/etl/version.h +++ b/src/etl/version.h @@ -40,7 +40,7 @@ SOFTWARE. #define ETL_VERSION_MAJOR 20 #define ETL_VERSION_MINOR 27 -#define ETL_VERSION_PATCH 2 +#define ETL_VERSION_PATCH 3 #define ETL_VERSION ETL_STRINGIFY(ETL_VERSION_MAJOR) "." ETL_STRINGIFY(ETL_VERSION_MINOR) "." ETL_STRINGIFY(ETL_VERSION_PATCH)