diff --git a/CHANGES.txt b/CHANGES.txt index 006937e..3e1732d 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,5 +1,16 @@ Changes for lest � lest errors escape testing +version 1.35.2 2023-12-28 + +- Include `windows.h` (lowercase) to fix cross-compiled MinGW builds (#75, thanks @salman-javed-nz) +- Refine comment in last commit, 24ebadc636 (thanks @mbeutel) +- Cast char to signed to avoid type-limits warning (courtesy gsl-lite issue 337, PR 338) +- Change value used with *_CPP20_OR_GREATER to 202002L (nonstd-lite-project issue 60); Now, designate C++23 as speculative. +- Remove Travis CI configuration file (#74, thanks @striezel) +- Add workflow for GitHub Actions (thanks @striezel #73) +- Fix some typos (#72, thanks @striezel) +- Add parentheses around macro arguments (PVS-Studio: V1003) + version 1.35.1 2019-03-15 - Add standard selection macro lest_CPLUSPLUS (nonstd-lite-project issue 7) diff --git a/CMakeLists.txt b/CMakeLists.txt index 513fceb..3773bf4 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -7,7 +7,7 @@ cmake_minimum_required( VERSION 3.5 FATAL_ERROR ) project( lest - VERSION 1.35.1 + VERSION 1.35.2 # DESCRIPTION "A modern, C++11-native, single-file header-only, tiny framework for unit-tests, TDD and BDD (includes C++98 variant)" # HOMEPAGE_URL "https://github.com/martinmoene/lest" LANGUAGES CXX ) diff --git a/conanfile.py b/conanfile.py index 93a4752..f37c27e 100644 --- a/conanfile.py +++ b/conanfile.py @@ -1,7 +1,7 @@ from conans import ConanFile, CMake class LestConan(ConanFile): - version = "1.35.1" + version = "1.35.2" name = "lest" description = "A modern, C++11-native, single-file header-only, tiny framework for unit-tests, TDD and BDD (includes C++98 variant)" license = "Boost Software License - Version 1.0. http://www.boost.org/LICENSE_1_0.txt" diff --git a/include/lest/lest.hpp b/include/lest/lest.hpp index 035dcc6..3c96419 100644 --- a/include/lest/lest.hpp +++ b/include/lest/lest.hpp @@ -33,7 +33,7 @@ #define lest_MAJOR 1 #define lest_MINOR 35 -#define lest_PATCH 1 +#define lest_PATCH 2 #define lest_VERSION lest_STRINGIFY(lest_MAJOR) "." lest_STRINGIFY(lest_MINOR) "." lest_STRINGIFY(lest_PATCH) diff --git a/include/lest/lest_cpp03.hpp b/include/lest/lest_cpp03.hpp index dec1857..81d0897 100644 --- a/include/lest/lest_cpp03.hpp +++ b/include/lest/lest_cpp03.hpp @@ -29,7 +29,7 @@ #define lest_MAJOR 1 #define lest_MINOR 35 -#define lest_PATCH 1 +#define lest_PATCH 2 #define lest_VERSION lest_STRINGIFY(lest_MAJOR) "." lest_STRINGIFY(lest_MINOR) "." lest_STRINGIFY(lest_PATCH)