mirror of
https://github.com/ETLCPP/etl.git
synced 2026-04-30 19:09:10 +08:00
Merge branch 'development' of https://github.com/ETLCPP/etl into development
This commit is contained in:
commit
6b91aaeb1d
@ -38,7 +38,7 @@ SOFTWARE.
|
||||
///\ingroup utilities
|
||||
|
||||
#define ETL_VERSION_MAJOR 20
|
||||
#define ETL_VERSION_MINOR 20
|
||||
#define ETL_VERSION_MINOR 21
|
||||
#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.20.0",
|
||||
"version": "20.21.0",
|
||||
"author s": {
|
||||
"name": "John Wellbelove",
|
||||
"email": "john.wellbelove@etlcpp.com"
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
name=Embedded Template Library ETL
|
||||
version=20.20.0
|
||||
version=20.21.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.20.0'
|
||||
version: '20.21.0'
|
||||
)
|
||||
|
||||
compile_args = []
|
||||
@ -20,7 +20,6 @@ endif
|
||||
|
||||
etl_dep = declare_dependency(
|
||||
include_directories: include_directories('include'),
|
||||
extra_files: ['meson.build'],
|
||||
compile_args: compile_args
|
||||
)
|
||||
|
||||
|
||||
@ -1,3 +1,10 @@
|
||||
===============================================================================
|
||||
20.21.0
|
||||
Added contains() method to etl::map and etl::set + variants.
|
||||
Added support for
|
||||
When ETL_NO_ATOMICS is defined the timer.h file does not define timer_semaphore_t.
|
||||
etl::deque::resize throws etl::deque_full instead of etl::deque_out_of_bounds, if requested size is too large.
|
||||
|
||||
===============================================================================
|
||||
20.20.0
|
||||
Updated container 'insert' and 'erase' to C++11 style const_iterator parameters. (#463)
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user