From 2eff7b396b13ba1a30079da03e359a0b3b4a885f Mon Sep 17 00:00:00 2001 From: John Wellbelove Date: Mon, 1 May 2023 10:11:11 +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 +- scripts/generator_test.bat | 1 + scripts/update_release.bat | 1 + support/Release notes.txt | 27 +++++++++++++++++++++++++++ version.txt | 2 +- 9 files changed, 36 insertions(+), 7 deletions(-) create mode 100644 scripts/generator_test.bat create mode 100644 scripts/update_release.bat diff --git a/arduino/library-arduino.json b/arduino/library-arduino.json index ba26f379..b9585aed 100644 --- a/arduino/library-arduino.json +++ b/arduino/library-arduino.json @@ -1,6 +1,6 @@ { "name": "Embedded Template Library - Arduino", - "version": "20.35.15", + "version": "20.36.0", "authors": { "name": "John Wellbelove", "email": "john.wellbelove@etlcpp.com" diff --git a/arduino/library-arduino.properties b/arduino/library-arduino.properties index c3876e76..fe77f3fc 100644 --- a/arduino/library-arduino.properties +++ b/arduino/library-arduino.properties @@ -1,5 +1,5 @@ name=Embedded Template Library - Arduino -version=20.35.15 +version=20.36.0 author= John Wellbelove maintainer=John Wellbelove license=MIT diff --git a/include/etl/version.h b/include/etl/version.h index e6b8c5ff..5946772d 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 35 -#define ETL_VERSION_PATCH 15 +#define ETL_VERSION_MINOR 36 +#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 85d8902e..b120a16a 100644 --- a/library.json +++ b/library.json @@ -1,6 +1,6 @@ { "name": "Embedded Template Library", - "version": "20.35.15", + "version": "20.36.0", "authors": { "name": "John Wellbelove", "email": "john.wellbelove@etlcpp.com" diff --git a/library.properties b/library.properties index ff211e55..88400749 100644 --- a/library.properties +++ b/library.properties @@ -1,5 +1,5 @@ name=Embedded Template Library -version=20.35.15 +version=20.36.0 author= John Wellbelove maintainer=John Wellbelove license=MIT diff --git a/scripts/generator_test.bat b/scripts/generator_test.bat new file mode 100644 index 00000000..467773c6 --- /dev/null +++ b/scripts/generator_test.bat @@ -0,0 +1 @@ +python .\generator_test.py \ No newline at end of file diff --git a/scripts/update_release.bat b/scripts/update_release.bat new file mode 100644 index 00000000..b2c8faa9 --- /dev/null +++ b/scripts/update_release.bat @@ -0,0 +1 @@ +python .\update_release.py \ No newline at end of file diff --git a/support/Release notes.txt b/support/Release notes.txt index 31b6e592..c0099cd8 100644 --- a/support/Release notes.txt +++ b/support/Release notes.txt @@ -1,3 +1,30 @@ +=============================================================================== +20.36.0 +#663 Make unit tests compile for C++20 +#675 Compilation error in optional.h +#684 Added sanitization fix for MinGW +#687 Build failure +Unit tests compile for C++11 +Fixed C++11 constexpr compatibility +Removed redundant 'const' in template parameters +Updated CI scripts to enable C++ standard and optimisation selection +Updated static definitions +Fixed incorrect return types for reverse iterator begin() & end() +Updated C++ standard conditional compilation for reverse iterator functions +Fixed latest Address Sanitizer issues +Message packet unused parameter fix +Added ETL_OR_STD17 macro as the namespace for size() +Added Tasking compiler +Fix type traits generator +Fix test array sizes +Changed some ETL_ASSERT macros to ETL_ASSERT_OR_RETURN +Updated CMake files to allow C++ standard selection +Replaced ETL_ASSERT_AND_RETURN with ETL_ASSERT_OR_RETURN +Changed native char8_t check +Renamed Github vs2022.yml to visual-studio.yml +Updated Unittest++ checks +Comments and noexcept updates to placement new + =============================================================================== 20.35.15 #627 Make tests build with C++14 diff --git a/version.txt b/version.txt index 6b09ceca..c81a2519 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -20.35.15 +20.36.0