diff --git a/CMakeLists.txt b/CMakeLists.txt index e876d5c..c7b68a6 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -7,7 +7,7 @@ cmake_minimum_required( VERSION 3.5 FATAL_ERROR ) project( lest - VERSION 1.34.0 + VERSION 1.34.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 57f08de..8204de0 100644 --- a/conanfile.py +++ b/conanfile.py @@ -1,7 +1,7 @@ from conans import ConanFile class LestConan(ConanFile): - version = "1.34.0" + version = "1.34.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 a7df952..2d25470 100644 --- a/include/lest/lest.hpp +++ b/include/lest/lest.hpp @@ -33,7 +33,7 @@ #define lest_MAJOR 1 #define lest_MINOR 34 -#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 6e53d9f..a59d8c6 100644 --- a/include/lest/lest_cpp03.hpp +++ b/include/lest/lest_cpp03.hpp @@ -29,7 +29,7 @@ #define lest_MAJOR 1 #define lest_MINOR 34 -#define lest_PATCH 0 +#define lest_PATCH 1 #define lest_VERSION lest_STRINGIFY(lest_MAJOR) "." lest_STRINGIFY(lest_MINOR) "." lest_STRINGIFY(lest_PATCH)