Updated version

This commit is contained in:
John Wellbelove 2025-06-02 23:38:15 +01:00
parent 6a1211c854
commit fe6fd35174
8 changed files with 17 additions and 7 deletions

View File

@ -1,6 +1,6 @@
{
"name": "Embedded Template Library ETL",
"version": "20.41.3",
"version": "20.41.4",
"authors": {
"name": "John Wellbelove",
"email": "john.wellbelove@etlcpp.com"

View File

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

View File

@ -2510,7 +2510,7 @@ namespace etl
#if ETL_HAS_STRING_TRUNCATION_CHECKS
set_truncated(false);
#endif
etl::fill(&p_buffer[current_size], &p_buffer[CAPACITY + 1U], T(0));
etl::mem_set(&p_buffer[current_size], &p_buffer[CAPACITY + 1U], char(0));
}
//*********************************************************************

View File

@ -40,7 +40,7 @@ SOFTWARE.
#define ETL_VERSION_MAJOR 20
#define ETL_VERSION_MINOR 41
#define ETL_VERSION_PATCH 3
#define ETL_VERSION_PATCH 4
#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)

View File

@ -1,6 +1,6 @@
{
"name": "Embedded Template Library",
"version": "20.41.3",
"version": "20.41.4",
"authors": {
"name": "John Wellbelove",
"email": "john.wellbelove@etlcpp.com"

View File

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

View File

@ -1,4 +1,14 @@
===============================================================================
20.41.4
Updates:
Optimisation of etl::basic_string<T>::initialize_free_space() using etl::mem_set
Pull Requests:
#1113 Add missing header wchar.h for usage of wcslen()
#1114 Fix West support and add ETL configuration options to Kconfig
===============================================================================
20.41.3
Updates:

View File

@ -1 +1 @@
20.41.3
20.41.4