Skip to content

Commit

Permalink
Release v1.34.1
Browse files Browse the repository at this point in the history
  • Loading branch information
martinmoene committed Feb 16, 2019
1 parent bc391fb commit 292c1d9
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
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.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 )
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

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"
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 34
#define lest_PATCH 0
#define lest_PATCH 1

#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 34
#define lest_PATCH 0
#define lest_PATCH 1

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

Expand Down

0 comments on commit 292c1d9

Please sign in to comment.