Updated version number

This commit is contained in:
John Wellbelove 2020-03-31 13:22:45 +01:00
parent 9db26d293f
commit 9ce2710ef8
4 changed files with 7 additions and 4 deletions

View File

@ -38,7 +38,7 @@ SOFTWARE.
///\ingroup utilities
#define ETL_VERSION_MAJOR 17
#define ETL_VERSION_MINOR 2
#define ETL_VERSION_MINOR 3
#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)

View File

@ -1,6 +1,6 @@
{
"name": "Embedded Template Library",
"version": "17.2.0",
"version": "17.3.0",
"authors": {
"name": "John Wellbelove",
"email": "john.wellbelove@etlcpp.com"

View File

@ -1,5 +1,5 @@
name=Embedded Template Library
version=17.2.0
version=17.3.0
author= John Wellbelove <john.wellbelove@etlcpp.com>
maintainer=John Wellbelove <john.wellbelove@etlcpp.com>
license=MIT

View File

@ -1,7 +1,10 @@
===============================================================================
17.3.0
Added move_iterator wrapper class.
===============================================================================
17.2.0
Added move API to unordered map and set containers.
Added a 'move' member function that moves items into the containers.
===============================================================================
17.1.2