Skip to content

Commit

Permalink
Release 1.35.2
Browse files Browse the repository at this point in the history
  • Loading branch information
martinmoene committed Dec 28, 2023
1 parent d92253b commit ddd0625
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 4 deletions.
11 changes: 11 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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 )
Expand Down
2 changes: 1 addition & 1 deletion conanfile.py
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
2 changes: 1 addition & 1 deletion include/lest/lest.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down
2 changes: 1 addition & 1 deletion include/lest/lest_cpp03.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down

0 comments on commit ddd0625

Please sign in to comment.