From 5577170fd268f1618b05773a6bf4d4a25e76d28d Mon Sep 17 00:00:00 2001 From: John Wellbelove Date: Wed, 23 Mar 2022 11:30:31 +0000 Subject: [PATCH] Updated version numbers --- include/etl/version.h | 2 +- library.json | 2 +- library.properties | 2 +- meson.build | 2 +- support/Release notes.txt | 6 ++++++ 5 files changed, 10 insertions(+), 4 deletions(-) diff --git a/include/etl/version.h b/include/etl/version.h index 530c100b..e2cb1e2e 100644 --- a/include/etl/version.h +++ b/include/etl/version.h @@ -38,7 +38,7 @@ SOFTWARE. ///\ingroup utilities #define ETL_VERSION_MAJOR 20 -#define ETL_VERSION_MINOR 25 +#define ETL_VERSION_MINOR 27 #define ETL_VERSION_PATCH 0 #define ETL_VERSION ETL_STRINGIFY(ETL_VERSION_MAJOR) "." ETL_STRINGIFY(ETL_VERSION_MINOR) "." ETL_STRINGIFY(ETL_VERSION_PATCH) #define ETL_VERSION_W ETL_STRINGIFY(ETL_VERSION_MAJOR) L"." ETL_STRINGIFY(ETL_VERSION_MINOR) L"." ETL_STRINGIFY(ETL_VERSION_PATCH) diff --git a/library.json b/library.json index 0fcfd068..9ad8f78c 100644 --- a/library.json +++ b/library.json @@ -1,6 +1,6 @@ { "name": "Embedded Template Library", - "version": "20.26.0", + "version": "20.27.0", "authors": { "name": "John Wellbelove", "email": "john.wellbelove@etlcpp.com" diff --git a/library.properties b/library.properties index f66b214d..556e71c8 100644 --- a/library.properties +++ b/library.properties @@ -1,5 +1,5 @@ name=Embedded Template Library -version=20.26.0 +version=20.27.0 author= John Wellbelove maintainer=John Wellbelove license=MIT diff --git a/meson.build b/meson.build index 44ad078b..fcf4151b 100644 --- a/meson.build +++ b/meson.build @@ -8,7 +8,7 @@ project('etl', 'cpp_std=c++17', 'build.cpp_std=c++17', ], meson_version: '>=0.54.0', - version: '20.26.0' + version: '20.27.0' ) compile_args = [] diff --git a/support/Release notes.txt b/support/Release notes.txt index 2a8bbd43..83e56b0a 100644 --- a/support/Release notes.txt +++ b/support/Release notes.txt @@ -1,3 +1,9 @@ +=============================================================================== +20.27.0 +Added etl::functor for wrapping global/static functions in a functor. +Added etl::member_function_wrapper for converting a member function to a static function. +Added etl::functor_wrapper for converting a member function operator to a static function. + =============================================================================== 20.26.0 Added constexpr support for etl::unaligned_type.