diff --git a/CHANGES.txt b/CHANGES.txt index e2f473e..a25e631 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,6 +1,13 @@ Changes for lest – lest errors escape testing +version 1.29.0 2017-01-25 + +- Add operator<=() and operator>=() to approx per issue #38. +- Mention feedback on success per issue #41 (thanks to @jjl). +- Remove lest_TEST(), deprecated since version 1.17.0 of 29-Sep-2014. + + version 1.28.0 2016-12-31 - Add private operator=() to action to lest_cpp03.hpp (thanks to PVS-Studio). diff --git a/README.md b/README.md index 787ea30..95b9b81 100644 --- a/README.md +++ b/README.md @@ -80,7 +80,7 @@ int main( int argc, char * argv[] ) ### Compile and run ``` -prompt>g++ -Wall -Wextra -std=c++11 -I../include/lest -o 05_select.exe 05_select.cpp && 05_select +prompt>g++ -Wall -Wextra -std=c++11 -I../include/lest -o 05_select.exe 05_select.cpp && 05_select.exe 05_select.cpp:17: failed: Text compares lexically (fail): string("hello") > string("world") for "hello" > "world" 05_select.cpp:22: failed: got unexpected exception with message "surprise!": Unexpected exception is reported: (throw std::runtime_error("surprise!"), true) 05_select.cpp:37: failed: didn't get exception: Expected exception is reported missing: true @@ -491,7 +491,7 @@ Here we use lest/build. lest/build> ctest -V -All tests should pass, indicating your platform is supported and you are ready to use *gsl-lite*. See the table with [supported types and functions](#features). Note that quite some examples fail. They do so to demonstrate the usage of things. +All tests should pass, indicating your platform is supported and you are ready to use *lest*. Note that quite some examples fail. They do so to demonstrate the usage of things. Contributions to *lest* @@ -524,4 +524,3 @@ Notes and references [4] A more technically informed name: lest - lambda engaged small tester. -
[![Build status](https://ci.appveyor.com/api/projects/status/3777o06o2ni5lww2/branch/master?svg=true)](https://ci.appveyor.com/project/martinmoene/lest/branch/master) [![Build Status](https://travis-ci.org/martinmoene/lest.svg?branch=master)](https://travis-ci.org/martinmoene/lest) diff --git a/include/lest/lest.hpp b/include/lest/lest.hpp index 0db8c18..f7f9307 100644 --- a/include/lest/lest.hpp +++ b/include/lest/lest.hpp @@ -40,7 +40,7 @@ # pragma GCC diagnostic ignored "-Wunused-value" #endif -#define lest_VERSION "1.28.0" +#define lest_VERSION "1.29.0" #ifndef lest_FEATURE_AUTO_REGISTER # define lest_FEATURE_AUTO_REGISTER 0 diff --git a/include/lest/lest_cpp03.hpp b/include/lest/lest_cpp03.hpp index 77e9c19..ea00b84 100644 --- a/include/lest/lest_cpp03.hpp +++ b/include/lest/lest_cpp03.hpp @@ -35,7 +35,7 @@ # pragma GCC diagnostic ignored "-Wunused-value" #endif -#define lest_VERSION "1.28.0" +#define lest_VERSION "1.29.0" #ifndef lest_FEATURE_COLOURISE # define lest_FEATURE_COLOURISE 0