diff --git a/arduino/library-arduino.json b/arduino/library-arduino.json index 920e19f3..8bdb2a1b 100644 --- a/arduino/library-arduino.json +++ b/arduino/library-arduino.json @@ -1,6 +1,6 @@ { "name": "Embedded Template Library ETL", - "version": "20.48.0", + "version": "20.48.1", "authors": { "name": "John Wellbelove", "email": "john.wellbelove@etlcpp.com" diff --git a/arduino/library-arduino.properties b/arduino/library-arduino.properties index b33108b3..55f4e119 100644 --- a/arduino/library-arduino.properties +++ b/arduino/library-arduino.properties @@ -1,5 +1,5 @@ name=Embedded Template Library ETL -version=20.48.0 +version=20.48.1 author= John Wellbelove maintainer=John Wellbelove license=MIT diff --git a/docs/releases/_index.md b/docs/releases/_index.md index dcfab765..b0bf7238 100644 --- a/docs/releases/_index.md +++ b/docs/releases/_index.md @@ -5,6 +5,22 @@ weight: 2002 Click on the links to see the original Github page. +## 20.48.1 + +**Pull requests:** + +[#1484](https://github.com/ETLCPP/etl/pull/1484) Fix `etl::message_timer` firing following timers early on unregister +[#1485](https://github.com/ETLCPP/etl/pull/1485) Fix `etl::histogram` copy/move not preserving start_index +[#1486](https://github.com/ETLCPP/etl/pull/1486) Fix `etl::bitset` single-element `from_string` shift on empty string +[#1487](https://github.com/ETLCPP/etl/pull/1487) Fix `etl::pearson::reset()` not resetting the first-byte flag +[#1488](https://github.com/ETLCPP/etl/pull/1488) Fix `etl::mem_cast` cross-size copy constructor and assignment +[#1489](https://github.com/ETLCPP/etl/pull/1489) Add missing interfaces to `etl::chrono` +[#1490](https://github.com/ETLCPP/etl/pull/1490) Add missing memory functions, according the standard +[#1491](https://github.com/ETLCPP/etl/pull/1491) Add optional `etl_profile` `label_flag` for Bazel profile injection +[#1492](https://github.com/ETLCPP/etl/pull/1492) Allow `etl::vector` to store pointers to functions and member functions +[#1494](https://github.com/ETLCPP/etl/pull/1494) Refactor `variant::emplace` to perfect forward args instead of copy/move construct +[#1495](https://github.com/ETLCPP/etl/pull/1495) Separate bit order and endianness in `bit_stream.h` + ## 20.48.0 **Pull requests:** diff --git a/hugo/assets/version.txt b/hugo/assets/version.txt index 45d90e97..09bbfc15 100644 --- a/hugo/assets/version.txt +++ b/hugo/assets/version.txt @@ -1 +1 @@ -20.48.0 +20.48.1 diff --git a/include/etl/version.h b/include/etl/version.h index 372cc3c9..a5e76179 100644 --- a/include/etl/version.h +++ b/include/etl/version.h @@ -40,7 +40,7 @@ SOFTWARE. #define ETL_VERSION_MAJOR 20 #define ETL_VERSION_MINOR 48 -#define ETL_VERSION_PATCH 0 +#define ETL_VERSION_PATCH 1 #define ETL_VERSION \ ETL_STRING(ETL_VERSION_MAJOR) \ diff --git a/library.json b/library.json index 356abdc2..f597d53f 100644 --- a/library.json +++ b/library.json @@ -1,6 +1,6 @@ { "name": "Embedded Template Library", - "version": "20.48.0", + "version": "20.48.1", "authors": { "name": "John Wellbelove", "email": "john.wellbelove@etlcpp.com" diff --git a/library.properties b/library.properties index a7eab13e..813e2468 100644 --- a/library.properties +++ b/library.properties @@ -1,5 +1,5 @@ name=Embedded Template Library -version=20.48.0 +version=20.48.1 author= John Wellbelove maintainer=John Wellbelove license=MIT diff --git a/support/Release notes.txt b/support/Release notes.txt index 2966f0a3..ac2012af 100644 --- a/support/Release notes.txt +++ b/support/Release notes.txt @@ -1,4 +1,19 @@ =============================================================================== +20.48.1 + +#1484 Fix etl::message_timer firing following timers early on unregister +#1485 Fix etl::histogram copy/move not preserving start_index +#1486 Fix etl::bitset single-element from_string shift on empty string +#1487 Fix etl::pearson::reset() not resetting the first-byte flag +#1488 Fix etl::mem_cast cross-size copy constructor and assignment +#1489 Add missing interfaces to etl::chrono +#1490 Add missing memory functions, according the standard +#1491 Add optional etl_profile label_flag for Bazel profile injection +#1492 Allow etl::vector to store pointers to functions and member functions +#1494 Refactor variant::emplace to perfect forward args instead of copy/move construct +#1495 Separate bit order and endianness in bit_stream.h + +=============================================================================== 20.48.0 #1375 Support for C++26 diff --git a/version.txt b/version.txt index 45d90e97..09bbfc15 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -20.48.0 +20.48.1