From 2c6ffdc36f2645d509936172057c2bbcacfc0e2f Mon Sep 17 00:00:00 2001 From: John Wellbelove Date: Thu, 3 Mar 2022 20:01:18 +0000 Subject: [PATCH] Updated version numbers and release notes. --- include/etl/version.h | 4 ++-- library.json | 2 +- library.properties | 2 +- meson.build | 2 +- support/Release notes.txt | 12 ++++++++++++ 5 files changed, 17 insertions(+), 5 deletions(-) diff --git a/include/etl/version.h b/include/etl/version.h index 32649efb..530c100b 100644 --- a/include/etl/version.h +++ b/include/etl/version.h @@ -38,8 +38,8 @@ SOFTWARE. ///\ingroup utilities #define ETL_VERSION_MAJOR 20 -#define ETL_VERSION_MINOR 24 -#define ETL_VERSION_PATCH 1 +#define ETL_VERSION_MINOR 25 +#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) #define ETL_VERSION_U16 ETL_STRINGIFY(ETL_VERSION_MAJOR) u"." ETL_STRINGIFY(ETL_VERSION_MINOR) u"." ETL_STRINGIFY(ETL_VERSION_PATCH) diff --git a/library.json b/library.json index 21e9c397..8b57ae14 100644 --- a/library.json +++ b/library.json @@ -1,6 +1,6 @@ { "name": "Embedded Template Library", - "version": "20.24.1", + "version": "20.25.0", "authors": { "name": "John Wellbelove", "email": "john.wellbelove@etlcpp.com" diff --git a/library.properties b/library.properties index b1d0b456..ebdf3ef1 100644 --- a/library.properties +++ b/library.properties @@ -1,5 +1,5 @@ name=Embedded Template Library -version=20.24.1 +version=20.25.0 author= John Wellbelove maintainer=John Wellbelove license=MIT diff --git a/meson.build b/meson.build index e15c20ca..ce6705fe 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.24.1' + version: '20.25.0' ) compile_args = [] diff --git a/support/Release notes.txt b/support/Release notes.txt index 3ccf50d5..85e52ce7 100644 --- a/support/Release notes.txt +++ b/support/Release notes.txt @@ -1,3 +1,15 @@ +=============================================================================== +20.25.0 +Added message_timer_interrupt +Added callback_timer_interrupt +Changed message_timer_atomic and callback_timer_atomic to require an atomic counter template type. +Renamed Arduino files to stop PlatformIO getting confused. +Changed from C cast to C++ cast in memory.h +Always use stddef.h +Modified WCHAR_MIN and WCHAR_MAX checks. +Added char8_t type. +Fixed 'unused function parameter' warnings. + =============================================================================== 20.24.1 callback and message timers now use etl::timer_semaphore_t instead of et::atomic_uint_least16_t