From 680b96515ec54e13c688a3a12393cbfa88d941ac Mon Sep 17 00:00:00 2001 From: Martin Moene Date: Fri, 8 Mar 2019 13:12:16 +0100 Subject: [PATCH] Release 1.35.0 --- CHANGES.txt | 9 +++++++-- CMakeLists.txt | 2 +- README.md | 2 +- conanfile.py | 2 +- include/lest/lest.hpp | 4 ++-- include/lest/lest_cpp03.hpp | 4 ++-- 6 files changed, 14 insertions(+), 9 deletions(-) diff --git a/CHANGES.txt b/CHANGES.txt index f45e72f..1683640 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,8 +1,13 @@ Changes for lest – lest errors escape testing +version 1.35.0 2019-03-08 + +- Add option -z,--pass-zen that omits printing of the expanded expression, thanks to @ninnghazad +- Fix to print unprintable characters as '\xdd' or "...\xdd...", except for \\,\r,\n,\f; thanks to @ninnghazad + version 1.34.1 2019-02-16 -To support conan and vcpkg installations, examples now specify folder 'lest' in the include directives, like: #include "lest/lest.hpp". +To support conan and vcpkg installations, examples now specify folder 'lest' in the include directives, like: #include "lest/lest.hpp". version 1.34.0 2019-02-11 @@ -67,7 +72,7 @@ version 1.32.0 2018-01-26 version 1.31.0 2017-07-17 -- Add the lest_FEATURE_RTTI compile-time configuration macro. +- Add the lest_FEATURE_RTTI compile-time configuration macro. - Add a 'try it online' button - Expands the list 'Other test frameworks'. diff --git a/CMakeLists.txt b/CMakeLists.txt index c7b68a6..d4b8cf2 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -7,7 +7,7 @@ cmake_minimum_required( VERSION 3.5 FATAL_ERROR ) project( lest - VERSION 1.34.1 + VERSION 1.35.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/README.md b/README.md index ce73a0c..bea723f 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ lest – lest errors escape testing ======================================= -[![Language](https://img.shields.io/badge/language-C++-blue.svg)](https://isocpp.org/) [![Standard](https://img.shields.io/badge/c%2B%2B-11-blue.svg)](https://en.wikipedia.org/wiki/C%2B%2B#Standardization) [![Standard](https://img.shields.io/badge/c%2B%2B-98-orange.svg)](https://en.wikipedia.org/wiki/C%2B%2B#Standardization) [![License](https://img.shields.io/badge/license-BSL-blue.svg)](https://opensource.org/licenses/BSL-1.0) [![Build Status](https://travis-ci.org/martinmoene/lest.svg?branch=master)](https://travis-ci.org/martinmoene/lest) [![Build status](https://ci.appveyor.com/api/projects/status/3777o06o2ni5lww2/branch/master?svg=true)](https://ci.appveyor.com/project/martinmoene/lest/branch/master) [![Version](https://badge.fury.io/gh/martinmoene%2Flest.svg)](https://github.com/martinmoene/lest/releases) [![download](https://img.shields.io/badge/latest-download-blue.svg)](https://raw.githubusercontent.com/martinmoene/lest/master/include/lest/lest.hpp) [![Conan](https://img.shields.io/badge/on-conan-blue.svg)](https://bintray.com/martinmoene/testing/lest%3Atesting/_latestVersion) [![Try it online](https://img.shields.io/badge/on-wandbox-blue.svg)](https://wandbox.org/permlink/sAVsUrrJsyv1z43c) +[![Language](https://img.shields.io/badge/language-C++-blue.svg)](https://isocpp.org/) [![Standard](https://img.shields.io/badge/c%2B%2B-11-blue.svg)](https://en.wikipedia.org/wiki/C%2B%2B#Standardization) [![Standard](https://img.shields.io/badge/c%2B%2B-98-orange.svg)](https://en.wikipedia.org/wiki/C%2B%2B#Standardization) [![License](https://img.shields.io/badge/license-BSL-blue.svg)](https://opensource.org/licenses/BSL-1.0) [![Build Status](https://travis-ci.org/martinmoene/lest.svg?branch=master)](https://travis-ci.org/martinmoene/lest) [![Build status](https://ci.appveyor.com/api/projects/status/3777o06o2ni5lww2/branch/master?svg=true)](https://ci.appveyor.com/project/martinmoene/lest/branch/master) [![Version](https://badge.fury.io/gh/martinmoene%2Flest.svg)](https://github.com/martinmoene/lest/releases) [![download](https://img.shields.io/badge/latest-download-blue.svg)](https://raw.githubusercontent.com/martinmoene/lest/master/include/lest/lest.hpp) [![Conan](https://img.shields.io/badge/on-conan-blue.svg)](https://bintray.com/martinmoene/testing/lest%3Atesting/_latestVersion) [![Try it online](https://img.shields.io/badge/on-wandbox-blue.svg)](https://wandbox.org/permlink/80a88nlPralvatNq) This tiny C++11 test framework is based on ideas and examples by Kevlin Henney [1,2] and on ideas found in the CATCH test framework by Phil Nash [3]. diff --git a/conanfile.py b/conanfile.py index 8204de0..1677639 100644 --- a/conanfile.py +++ b/conanfile.py @@ -1,7 +1,7 @@ from conans import ConanFile class LestConan(ConanFile): - version = "1.34.1" + version = "1.35.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 fa4a3ac..5da61d2 100644 --- a/include/lest/lest.hpp +++ b/include/lest/lest.hpp @@ -32,8 +32,8 @@ #include #define lest_MAJOR 1 -#define lest_MINOR 34 -#define lest_PATCH 1 +#define lest_MINOR 35 +#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 d81e05a..2dacd8a 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 34 -#define lest_PATCH 1 +#define lest_MINOR 35 +#define lest_PATCH 0 #define lest_VERSION lest_STRINGIFY(lest_MAJOR) "." lest_STRINGIFY(lest_MINOR) "." lest_STRINGIFY(lest_PATCH)