From 7333ebee5710cf8be7a5199de84ac0ad15cc2ced Mon Sep 17 00:00:00 2001 From: Martin Moene Date: Mon, 11 Feb 2019 12:24:14 +0100 Subject: [PATCH] Release 1.34.0 --- CMakeLists.txt | 2 +- conanfile.py | 2 +- include/lest/lest.hpp | 4 ++-- include/lest/lest_cpp03.hpp | 4 ++-- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index dcdac43..2e2be79 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -7,7 +7,7 @@ cmake_minimum_required( VERSION 3.0 FATAL_ERROR ) project( lest - VERSION 1.33.5 + VERSION 1.34.0 # 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 68b130b..57f08de 100644 --- a/conanfile.py +++ b/conanfile.py @@ -1,7 +1,7 @@ from conans import ConanFile class LestConan(ConanFile): - version = "1.33.5" + version = "1.34.0" 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 1705d8e..a7df952 100644 --- a/include/lest/lest.hpp +++ b/include/lest/lest.hpp @@ -32,8 +32,8 @@ #include #define lest_MAJOR 1 -#define lest_MINOR 33 -#define lest_PATCH 5 +#define lest_MINOR 34 +#define lest_PATCH 0 #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 e866373..6e53d9f 100644 --- a/include/lest/lest_cpp03.hpp +++ b/include/lest/lest_cpp03.hpp @@ -28,8 +28,8 @@ #include #define lest_MAJOR 1 -#define lest_MINOR 33 -#define lest_PATCH 5 +#define lest_MINOR 34 +#define lest_PATCH 0 #define lest_VERSION lest_STRINGIFY(lest_MAJOR) "." lest_STRINGIFY(lest_MINOR) "." lest_STRINGIFY(lest_PATCH)