mirror of
https://github.com/ETLCPP/etl.git
synced 2026-07-30 16:26:17 +08:00
Updated version and release notes
This commit is contained in:
parent
5287fe4b3b
commit
878a0ba5a2
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "Embedded Template Library ETL",
|
"name": "Embedded Template Library ETL",
|
||||||
"version": "20.48.0",
|
"version": "20.48.1",
|
||||||
"authors": {
|
"authors": {
|
||||||
"name": "John Wellbelove",
|
"name": "John Wellbelove",
|
||||||
"email": "john.wellbelove@etlcpp.com"
|
"email": "john.wellbelove@etlcpp.com"
|
||||||
|
|||||||
@ -1,5 +1,5 @@
|
|||||||
name=Embedded Template Library ETL
|
name=Embedded Template Library ETL
|
||||||
version=20.48.0
|
version=20.48.1
|
||||||
author= John Wellbelove <john.wellbelove@etlcpp.com>
|
author= John Wellbelove <john.wellbelove@etlcpp.com>
|
||||||
maintainer=John Wellbelove <john.wellbelove@etlcpp.com>
|
maintainer=John Wellbelove <john.wellbelove@etlcpp.com>
|
||||||
license=MIT
|
license=MIT
|
||||||
|
|||||||
@ -5,6 +5,22 @@ weight: 2002
|
|||||||
|
|
||||||
Click on the links to see the original Github page.
|
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
|
## 20.48.0
|
||||||
|
|
||||||
**Pull requests:**
|
**Pull requests:**
|
||||||
|
|||||||
@ -1 +1 @@
|
|||||||
20.48.0
|
20.48.1
|
||||||
|
|||||||
@ -40,7 +40,7 @@ SOFTWARE.
|
|||||||
|
|
||||||
#define ETL_VERSION_MAJOR 20
|
#define ETL_VERSION_MAJOR 20
|
||||||
#define ETL_VERSION_MINOR 48
|
#define ETL_VERSION_MINOR 48
|
||||||
#define ETL_VERSION_PATCH 0
|
#define ETL_VERSION_PATCH 1
|
||||||
|
|
||||||
#define ETL_VERSION \
|
#define ETL_VERSION \
|
||||||
ETL_STRING(ETL_VERSION_MAJOR) \
|
ETL_STRING(ETL_VERSION_MAJOR) \
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "Embedded Template Library",
|
"name": "Embedded Template Library",
|
||||||
"version": "20.48.0",
|
"version": "20.48.1",
|
||||||
"authors": {
|
"authors": {
|
||||||
"name": "John Wellbelove",
|
"name": "John Wellbelove",
|
||||||
"email": "john.wellbelove@etlcpp.com"
|
"email": "john.wellbelove@etlcpp.com"
|
||||||
|
|||||||
@ -1,5 +1,5 @@
|
|||||||
name=Embedded Template Library
|
name=Embedded Template Library
|
||||||
version=20.48.0
|
version=20.48.1
|
||||||
author= John Wellbelove <john.wellbelove@etlcpp.com>
|
author= John Wellbelove <john.wellbelove@etlcpp.com>
|
||||||
maintainer=John Wellbelove <john.wellbelove@etlcpp.com>
|
maintainer=John Wellbelove <john.wellbelove@etlcpp.com>
|
||||||
license=MIT
|
license=MIT
|
||||||
|
|||||||
@ -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
|
20.48.0
|
||||||
|
|
||||||
#1375 Support for C++26
|
#1375 Support for C++26
|
||||||
|
|||||||
@ -1 +1 @@
|
|||||||
20.48.0
|
20.48.1
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user