Skip to content

Commit

Permalink
Release 1.29.0
Browse files Browse the repository at this point in the history
  • Loading branch information
martinmoene committed Jan 25, 2017
1 parent 1f4a035 commit 845ef96
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 5 deletions.
7 changes: 7 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -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).
Expand Down
5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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*
Expand Down Expand Up @@ -524,4 +524,3 @@ Notes and references
[4] A more technically informed name: lest - lambda engaged small tester.
<br>[![Build status](https://ci.appveyor.com/api/projects/status/3777o06o2ni5lww2/branch/master?svg=true)](https://ci.appveyor.com/project/martinmoene/lest/branch/master)&emsp;[![Build Status](https://travis-ci.org/martinmoene/lest.svg?branch=master)](https://travis-ci.org/martinmoene/lest)
2 changes: 1 addition & 1 deletion include/lest/lest.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -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
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 @@ -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
Expand Down

0 comments on commit 845ef96

Please sign in to comment.