From b1f771f6b4b7b5c1f6ddb37d998f304134d98b9b Mon Sep 17 00:00:00 2001 From: John Wellbelove Date: Tue, 22 Jun 2021 12:04:28 +0100 Subject: [PATCH] Updated version numbers --- include/etl/version.h | 2 +- library.json | 2 +- library.properties | 2 +- meson.build | 2 +- support/Release notes.txt | 5 +++++ test/runtests.sh | 2 +- 6 files changed, 10 insertions(+), 5 deletions(-) diff --git a/include/etl/version.h b/include/etl/version.h index 4fff58f9..87f3d950 100644 --- a/include/etl/version.h +++ b/include/etl/version.h @@ -39,7 +39,7 @@ SOFTWARE. #define ETL_VERSION_MAJOR 20 #define ETL_VERSION_MINOR 11 -#define ETL_VERSION_PATCH 3 +#define ETL_VERSION_PATCH 4 #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 fbb62211..384fcb94 100644 --- a/library.json +++ b/library.json @@ -1,6 +1,6 @@ { "name": "ETL Embedded Template Library", - "version": "20.11.3", + "version": "20.11.4", "author s": { "name": "John Wellbelove", "email": "john.wellbelove@etlcpp.com" diff --git a/library.properties b/library.properties index 735cec9a..71536f16 100644 --- a/library.properties +++ b/library.properties @@ -1,5 +1,5 @@ name=Embedded Template Library ETL -version=20.11.3 +version=20.11.4 author= John Wellbelove maintainer=John Wellbelove license=MIT diff --git a/meson.build b/meson.build index cdd8ac7d..5e308141 100644 --- a/meson.build +++ b/meson.build @@ -8,7 +8,7 @@ project('PROJECT_NAME', 'cpp_std=c++17', 'build.cpp_std=c++17', ], meson_version: '>=0.54.0', - version: '20.11.3' + version: '20.11.4' ) ###################### diff --git a/support/Release notes.txt b/support/Release notes.txt index 3100f572..02121a4a 100644 --- a/support/Release notes.txt +++ b/support/Release notes.txt @@ -1,3 +1,8 @@ +=============================================================================== +20.11.4 +Fixed etl::circular_buffer copy and move assignment bug where the destination +buffer was not cleared before assignment. + =============================================================================== 20.11.3 Define missing macro when cross compiling with clang for AVR diff --git a/test/runtests.sh b/test/runtests.sh index 2bfee270..ae2114a6 100755 --- a/test/runtests.sh +++ b/test/runtests.sh @@ -1,5 +1,5 @@ #!/bin/sh -sudo ntpdate ntp.ubuntu.com +#sudo ntpdate ntp.ubuntu.com cd build || exit 1 echo "ETL Tests" > etl_test_log.txt echo ""