Skip to content

Commit

Permalink
Release 1.35.0
Browse files Browse the repository at this point in the history
  • Loading branch information
martinmoene committed Mar 8, 2019
1 parent 0b67b0a commit 680b965
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 9 deletions.
9 changes: 7 additions & 2 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -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

Expand Down Expand Up @@ -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'.

Expand Down
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.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 )
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -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].

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.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"
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 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)

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

Expand Down

0 comments on commit 680b965

Please sign in to comment.