mirror of
https://github.com/ETLCPP/etl.git
synced 2026-04-30 19:09:10 +08:00
Updated version and release notes
This commit is contained in:
parent
478c954b31
commit
2eff7b396b
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "Embedded Template Library - Arduino",
|
||||
"version": "20.35.15",
|
||||
"version": "20.36.0",
|
||||
"authors": {
|
||||
"name": "John Wellbelove",
|
||||
"email": "john.wellbelove@etlcpp.com"
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
name=Embedded Template Library - Arduino
|
||||
version=20.35.15
|
||||
version=20.36.0
|
||||
author= John Wellbelove <john.wellbelove@etlcpp.com>
|
||||
maintainer=John Wellbelove <john.wellbelove@etlcpp.com>
|
||||
license=MIT
|
||||
|
||||
@ -39,8 +39,8 @@ SOFTWARE.
|
||||
///\ingroup utilities
|
||||
|
||||
#define ETL_VERSION_MAJOR 20
|
||||
#define ETL_VERSION_MINOR 35
|
||||
#define ETL_VERSION_PATCH 15
|
||||
#define ETL_VERSION_MINOR 36
|
||||
#define ETL_VERSION_PATCH 0
|
||||
|
||||
#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)
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "Embedded Template Library",
|
||||
"version": "20.35.15",
|
||||
"version": "20.36.0",
|
||||
"authors": {
|
||||
"name": "John Wellbelove",
|
||||
"email": "john.wellbelove@etlcpp.com"
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
name=Embedded Template Library
|
||||
version=20.35.15
|
||||
version=20.36.0
|
||||
author= John Wellbelove <john.wellbelove@etlcpp.com>
|
||||
maintainer=John Wellbelove <john.wellbelove@etlcpp.com>
|
||||
license=MIT
|
||||
|
||||
1
scripts/generator_test.bat
Normal file
1
scripts/generator_test.bat
Normal file
@ -0,0 +1 @@
|
||||
python .\generator_test.py
|
||||
1
scripts/update_release.bat
Normal file
1
scripts/update_release.bat
Normal file
@ -0,0 +1 @@
|
||||
python .\update_release.py
|
||||
@ -1,3 +1,30 @@
|
||||
===============================================================================
|
||||
20.36.0
|
||||
#663 Make unit tests compile for C++20
|
||||
#675 Compilation error in optional.h
|
||||
#684 Added sanitization fix for MinGW
|
||||
#687 Build failure
|
||||
Unit tests compile for C++11
|
||||
Fixed C++11 constexpr compatibility
|
||||
Removed redundant 'const' in template parameters
|
||||
Updated CI scripts to enable C++ standard and optimisation selection
|
||||
Updated static definitions
|
||||
Fixed incorrect return types for reverse iterator begin() & end()
|
||||
Updated C++ standard conditional compilation for reverse iterator functions
|
||||
Fixed latest Address Sanitizer issues
|
||||
Message packet unused parameter fix
|
||||
Added ETL_OR_STD17 macro as the namespace for size()
|
||||
Added Tasking compiler
|
||||
Fix type traits generator
|
||||
Fix test array sizes
|
||||
Changed some ETL_ASSERT macros to ETL_ASSERT_OR_RETURN
|
||||
Updated CMake files to allow C++ standard selection
|
||||
Replaced ETL_ASSERT_AND_RETURN with ETL_ASSERT_OR_RETURN
|
||||
Changed native char8_t check
|
||||
Renamed Github vs2022.yml to visual-studio.yml
|
||||
Updated Unittest++ checks
|
||||
Comments and noexcept updates to placement new
|
||||
|
||||
===============================================================================
|
||||
20.35.15
|
||||
#627 Make tests build with C++14
|
||||
|
||||
@ -1 +1 @@
|
||||
20.35.15
|
||||
20.36.0
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user