Skip to content

Commit 57197f3

Browse files
committed
Release 1.36.0
1 parent a445ff7 commit 57197f3

4 files changed

Lines changed: 6 additions & 6 deletions

File tree

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ cmake_minimum_required( VERSION 3.15 FATAL_ERROR )
77

88
project(
99
lest
10-
VERSION 1.35.2
10+
VERSION 1.36.0
1111
# DESCRIPTION "A modern, C++11-native, single-file header-only, tiny framework for unit-tests, TDD and BDD (includes C++98 variant)"
1212
# HOMEPAGE_URL "https://github.com/martinmoene/lest"
1313
LANGUAGES CXX )

conanfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from conans import ConanFile, CMake
22

33
class LestConan(ConanFile):
4-
version = "1.35.2"
4+
version = "1.36.0"
55
name = "lest"
66
description = "A modern, C++11-native, single-file header-only, tiny framework for unit-tests, TDD and BDD (includes C++98 variant)"
77
license = "Boost Software License - Version 1.0. http://www.boost.org/LICENSE_1_0.txt"

include/lest/lest.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@
3232
#include <cstddef>
3333

3434
#define lest_MAJOR 1
35-
#define lest_MINOR 35
36-
#define lest_PATCH 2
35+
#define lest_MINOR 36
36+
#define lest_PATCH 0
3737

3838
#define lest_VERSION lest_STRINGIFY(lest_MAJOR) "." lest_STRINGIFY(lest_MINOR) "." lest_STRINGIFY(lest_PATCH)
3939

include/lest/lest_cpp03.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@
2828
#include <ctime>
2929

3030
#define lest_MAJOR 1
31-
#define lest_MINOR 35
32-
#define lest_PATCH 2
31+
#define lest_MINOR 36
32+
#define lest_PATCH 0
3333

3434
#define lest_VERSION lest_STRINGIFY(lest_MAJOR) "." lest_STRINGIFY(lest_MINOR) "." lest_STRINGIFY(lest_PATCH)
3535

0 commit comments

Comments
 (0)