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
fa637f794e
commit
b9778190dc
@ -38,7 +38,7 @@ SOFTWARE.
|
||||
///\ingroup utilities
|
||||
|
||||
#define ETL_VERSION_MAJOR 20
|
||||
#define ETL_VERSION_MINOR 19
|
||||
#define ETL_VERSION_MINOR 20
|
||||
#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": "ETL Embedded Template Library",
|
||||
"version": "20.19.0",
|
||||
"version": "20.20.0",
|
||||
"author s": {
|
||||
"name": "John Wellbelove",
|
||||
"email": "john.wellbelove@etlcpp.com"
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
name=Embedded Template Library ETL
|
||||
version=20.19.0
|
||||
version=20.20.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.19.0'
|
||||
version: '20.20.0'
|
||||
)
|
||||
|
||||
compile_args = []
|
||||
|
||||
@ -1,3 +1,15 @@
|
||||
===============================================================================
|
||||
20.20.0
|
||||
Updated container 'insert' and 'erase' to C++11 style const_iterator parameters. (#463)
|
||||
Fixed container template function overload abiguity. (#466)
|
||||
Harmonize copy ctor and assignment for etl::delegate. (#465)
|
||||
Added constexpr support for etl::enum_type. (#462)
|
||||
Added 'make' functions to construct containers.
|
||||
Remove unnecessary casts that causes warnings. (#461)
|
||||
Added non-const string pointer overload. (#449)
|
||||
Changed != to < in etl::ipool to get rid of erroneous clang-tidy nullptr dereference warning. (#457)
|
||||
Added ifdef guard for MSVC pragma (#455)
|
||||
|
||||
===============================================================================
|
||||
20.19.0
|
||||
Updates to etl::delegate. Added more constexpr and set() functions.
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user