From 16ad955825246db7c45807f2a20685689a9a25af Mon Sep 17 00:00:00 2001 From: Martin Moene Date: Fri, 15 Mar 2019 08:01:04 +0100 Subject: [PATCH] Release 1.35.1 --- CMakeLists.txt | 2 +- conanfile.py | 2 +- include/lest/lest.hpp | 2 +- include/lest/lest_cpp03.hpp | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index d4b8cf2..513fceb 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -7,7 +7,7 @@ cmake_minimum_required( VERSION 3.5 FATAL_ERROR ) project( lest - VERSION 1.35.0 + VERSION 1.35.1 # 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 1677639..db6aeaa 100644 --- a/conanfile.py +++ b/conanfile.py @@ -1,7 +1,7 @@ from conans import ConanFile class LestConan(ConanFile): - version = "1.35.0" + version = "1.35.1" 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 bd92de6..f3c9f49 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 0 +#define lest_PATCH 1 #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 04863ad..a773c1d 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 0 +#define lest_PATCH 1 #define lest_VERSION lest_STRINGIFY(lest_MAJOR) "." lest_STRINGIFY(lest_MINOR) "." lest_STRINGIFY(lest_PATCH)