mirror of
https://github.com/ETLCPP/etl.git
synced 2026-04-30 19:09:10 +08:00
Updated version numbers
This commit is contained in:
parent
87fe3eec2d
commit
08e2d4c4d0
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "Embedded Template Library - Arduino",
|
||||
"version": "20.23.0",
|
||||
"version": "20.24.0",
|
||||
"authors": {
|
||||
"name": "John Wellbelove",
|
||||
"email": "john.wellbelove@etlcpp.com"
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
name=Embedded Template Library - Arduino
|
||||
version=20.23.0
|
||||
version=20.24.0
|
||||
author= John Wellbelove <john.wellbelove@etlcpp.com>
|
||||
maintainer=John Wellbelove <john.wellbelove@etlcpp.com>
|
||||
license=MIT
|
||||
|
||||
@ -38,7 +38,7 @@ SOFTWARE.
|
||||
///\ingroup utilities
|
||||
|
||||
#define ETL_VERSION_MAJOR 20
|
||||
#define ETL_VERSION_MINOR 23
|
||||
#define ETL_VERSION_MINOR 24
|
||||
#define ETL_VERSION_PATCH 0
|
||||
#define ETL_VERSION ETL_STRINGIFY(ETL_VERSION_MAJOR) "." ETL_STRINGIFY(ETL_VERSION_MINOR) "." ETL_STRINGIFY(ETL_VERSION_PATCH)
|
||||
#define ETL_VERSION_W ETL_STRINGIFY(ETL_VERSION_MAJOR) L"." ETL_STRINGIFY(ETL_VERSION_MINOR) L"." ETL_STRINGIFY(ETL_VERSION_PATCH)
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "Embedded Template Library",
|
||||
"version": "20.23.0",
|
||||
"version": "20.24.0",
|
||||
"authors": {
|
||||
"name": "John Wellbelove",
|
||||
"email": "john.wellbelove@etlcpp.com"
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
name=Embedded Template Library
|
||||
version=20.23.0
|
||||
version=20.24.0
|
||||
author= John Wellbelove <john.wellbelove@etlcpp.com>
|
||||
maintainer=John Wellbelove <john.wellbelove@etlcpp.com>
|
||||
license=MIT
|
||||
|
||||
@ -8,7 +8,7 @@ project('etl',
|
||||
'cpp_std=c++17', 'build.cpp_std=c++17',
|
||||
],
|
||||
meson_version: '>=0.54.0',
|
||||
version: '20.23.0'
|
||||
version: '20.24.0'
|
||||
)
|
||||
|
||||
compile_args = []
|
||||
|
||||
@ -1,3 +1,11 @@
|
||||
===============================================================================
|
||||
20.24.0
|
||||
#503 Algorithm transform uses expensive post increment operator - Fixed for all occurances of iterator increment.
|
||||
#504 ETL_CONSTANT vs const in binary.h - Fixed.
|
||||
Many algorithms will leverage built-ins, if available. Dependant on compiler version.
|
||||
Much of etl::string and etl::string_view can be constexpr.
|
||||
Added etl::construct_at support.
|
||||
|
||||
===============================================================================
|
||||
20.23.0
|
||||
Recoded state_chart to reduce its resource requirements.
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user