Skip to content

Commit 276415d

Browse files
author
John Wellbelove
committed
Updated release
1 parent c5b63fa commit 276415d

File tree

7 files changed

+8
-11
lines changed

7 files changed

+8
-11
lines changed

arduino/library-arduino.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "Embedded Template Library ETL",
3-
"version": "20.41.2",
3+
"version": "20.41.3",
44
"authors": {
55
"name": "John Wellbelove",
66
"email": "[email protected]"

arduino/library-arduino.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=Embedded Template Library ETL
2-
version=20.41.2
2+
version=20.41.3
33
author= John Wellbelove <[email protected]>
44
maintainer=John Wellbelove <[email protected]>
55
license=MIT

include/etl/version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ SOFTWARE.
4040

4141
#define ETL_VERSION_MAJOR 20
4242
#define ETL_VERSION_MINOR 41
43-
#define ETL_VERSION_PATCH 2
43+
#define ETL_VERSION_PATCH 3
4444

4545
#define ETL_VERSION ETL_STRING(ETL_VERSION_MAJOR) "." ETL_STRING(ETL_VERSION_MINOR) "." ETL_STRING(ETL_VERSION_PATCH)
4646
#define ETL_VERSION_W ETL_WIDE_STRING(ETL_VERSION_MAJOR) L"." ETL_WIDE_STRING(ETL_VERSION_MINOR) L"." ETL_WIDE_STRING(ETL_VERSION_PATCH)

library.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "Embedded Template Library",
3-
"version": "20.41.2",
3+
"version": "20.41.3",
44
"authors": {
55
"name": "John Wellbelove",
66
"email": "[email protected]"

library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=Embedded Template Library
2-
version=20.41.2
2+
version=20.41.3
33
author= John Wellbelove <[email protected]>
44
maintainer=John Wellbelove <[email protected]>
55
license=MIT

support/Release notes.txt

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,9 @@
33

44
Updates:
55
#1100 Optimise string class initialisation
6-
Added ability to disable -Wformat-security
7-
Added -Wformat-security
8-
Added char8_t, char16_t and char32_t is_integral and is_signed traits
9-
Hardened mem_set and mem_char parameter requirements
6+
Optimised etl::string_view::copy for non-STL
7+
Added char8_t, char16_t and char32_t to is_integral and is_signed traits
8+
Hardened etl::mem_set and etl::mem_char parameter requirements
109

1110
Pull Requests:
1211
#1110 Remove -Wuseless-cast

test/CMakeLists.txt

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -433,7 +433,6 @@ if (CMAKE_CXX_COMPILER_ID MATCHES "GNU")
433433
-Wfloat-equal
434434
-Wshadow
435435
-Wnull-dereference
436-
-Wformat-security
437436
-g
438437
)
439438
endif ()
@@ -449,7 +448,6 @@ if (CMAKE_CXX_COMPILER_ID MATCHES "Clang")
449448
-Wfloat-equal
450449
-Wshadow
451450
-Wnull-dereference
452-
-Wformat-security
453451
-g
454452
)
455453
endif ()

0 commit comments

Comments
 (0)