Skip to content

Commit

Permalink
Release 1.34.0
Browse files Browse the repository at this point in the history
  • Loading branch information
martinmoene committed Feb 11, 2019
1 parent e3a6099 commit 7333ebe
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 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.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 )
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.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"
Expand Down
4 changes: 2 additions & 2 deletions include/lest/lest.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@
#include <cstddef>

#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)

Expand Down
4 changes: 2 additions & 2 deletions include/lest/lest_cpp03.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@
#include <ctime>

#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)

Expand Down

0 comments on commit 7333ebe

Please sign in to comment.