Updated version and release notes

This commit is contained in:
John Wellbelove 2026-07-08 11:07:01 +01:00
parent 5287fe4b3b
commit 878a0ba5a2
9 changed files with 38 additions and 7 deletions

View File

@ -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"

View File

@ -1,5 +1,5 @@
name=Embedded Template Library ETL
version=20.48.0
version=20.48.1
author= John Wellbelove <john.wellbelove@etlcpp.com>
maintainer=John Wellbelove <john.wellbelove@etlcpp.com>
license=MIT

View File

@ -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:**

View File

@ -1 +1 @@
20.48.0
20.48.1

View File

@ -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) \

View File

@ -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"

View File

@ -1,5 +1,5 @@
name=Embedded Template Library
version=20.48.0
version=20.48.1
author= John Wellbelove <john.wellbelove@etlcpp.com>
maintainer=John Wellbelove <john.wellbelove@etlcpp.com>
license=MIT

View File

@ -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

View File

@ -1 +1 @@
20.48.0
20.48.1