Updated version info

This commit is contained in:
John Wellbelove 2022-07-28 11:38:20 +01:00
parent a89db201c5
commit ec98d64697
9 changed files with 18 additions and 9 deletions

View File

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

View File

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

View File

@ -51,6 +51,7 @@ SOFTWARE.
#include "utility.h"
#include "error_handler.h"
#include "span.h"
#include "file_error_numbers.h"
#if ETL_HAS_ATOMIC
@ -77,7 +78,7 @@ namespace etl
public:
bip_buffer_reserve_invalid(string_type file_name_, numeric_type line_number_)
: bip_buffer_exception("bip_buffer:reserve", file_name_, line_number_)
: bip_buffer_exception(ETL_ERROR_TEXT("bip_buffer:reserve", ETL_BIP_BUFFER_SPSC_ATOMIC_FILE_ID"A"), file_name_, line_number_)
{
}
};
@ -421,7 +422,7 @@ namespace etl
// Reserves an optimal memory area for writing. The buffer will only wrap
// around if the available forward space is less than min_reserve_size.
//*************************************************************************
span<T> write_reserve_optimal(size_type min_reserve_size = 1)
span<T> write_reserve_optimal(size_type min_reserve_size = 1U)
{
size_type reserve_size = numeric_limits<size_type>::max();
size_type windex = get_write_reserve(&reserve_size, min_reserve_size);

View File

@ -97,5 +97,6 @@ SOFTWARE.
#define ETL_SUCCESSOR_FILE_ID "64"
#define ETL_BIT_STREAM_FILE_ID "65"
#define ETL_BYTE_STREAM_FILE_ID "66"
#define ETL_BIP_BUFFER_SPSC_ATOMIC_FILE_ID "67"
#endif

View File

@ -39,8 +39,8 @@ SOFTWARE.
///\ingroup utilities
#define ETL_VERSION_MAJOR 20
#define ETL_VERSION_MINOR 31
#define ETL_VERSION_PATCH 3
#define ETL_VERSION_MINOR 32
#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)

View File

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

View File

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

View File

@ -1,3 +1,10 @@
===============================================================================
20.32.0
#571 Activate GCC and clang compiler warnings
#575 Bip buffer improvements
#576 Invoke function pointers with parenthesis
#574 Allow users to remove SYSTEM keyword because it forces C linkage for some gcc versions
===============================================================================
20.31.3
#569 Fixed swap function for circular_buffer_ext

View File

@ -1 +1 @@
20.31.3
20.32.0