Skip to content

Commit

Permalink
Sync to 20.27.3
Browse files Browse the repository at this point in the history
  • Loading branch information
John Wellbelove committed Apr 11, 2022
1 parent 1837320 commit 9850ad2
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion library.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Embedded Template Library - Arduino",
"version": "20.27.2",
"version": "20.27.3",
"authors": {
"name": "John Wellbelove",
"email": "[email protected]"
Expand Down
2 changes: 1 addition & 1 deletion library.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name=Embedded Template Library - Arduino
version=20.27.2
version=20.27.3
author= John Wellbelove <[email protected]>
maintainer=John Wellbelove <[email protected]>
license=MIT
Expand Down
4 changes: 2 additions & 2 deletions src/etl/reference_counted_message_pool.h
Original file line number Diff line number Diff line change
Expand Up @@ -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:

Expand All @@ -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:

Expand Down
2 changes: 1 addition & 1 deletion src/etl/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 9850ad2

Please sign in to comment.