Skip to content

Commit

Permalink
Release 1.30.0
Browse files Browse the repository at this point in the history
  • Loading branch information
martinmoene committed Jun 21, 2017
1 parent 7661870 commit d957f8c
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 6 deletions.
5 changes: 5 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
Changes for lest � lest errors escape testing

version 1.30.0 2017-06-21

- Add Buck build support.
- Add configuration lest_FEATURE_WSTRING to lest.hpp (thanks to Lucjan Bryndza, @lucckb).

version 1.29.1 2017-04-27

- Prevent (sign-)conversion warning (thanks to Magnus Bergsten, @Sillamacka).
Expand Down
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -280,6 +280,9 @@ Note: You have to make sure the compiler's library has a working `std::regex_sea
-D<b>lest_FEATURE_TIME_PRECISION</b>=0
Define this to set the precision of the duration in ms reported with option --time. Default is 0.
-D<b>lest_FEATURE_WSTRING</b>=1
Define this to 0 to remove references to std::wstring. Default is 1.
### Namespace
namespace **lest** { }
Types and functions are located in namespace lest.
Expand Down
10 changes: 5 additions & 5 deletions include/lest/lest.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -40,30 +40,30 @@
# pragma GCC diagnostic ignored "-Wunused-value"
#endif

#define lest_VERSION "1.29.1"
#define lest_VERSION "1.30.0"

#ifndef lest_FEATURE_AUTO_REGISTER
# define lest_FEATURE_AUTO_REGISTER 0
#endif

#ifndef lest_FEATURE_COLOURISE
# define lest_FEATURE_COLOURISE 0
# define lest_FEATURE_COLOURISE 0
#endif

#ifndef lest_FEATURE_LITERAL_SUFFIX
# define lest_FEATURE_LITERAL_SUFFIX 0
# define lest_FEATURE_LITERAL_SUFFIX 0
#endif

#ifndef lest_FEATURE_REGEX_SEARCH
# define lest_FEATURE_REGEX_SEARCH 0
# define lest_FEATURE_REGEX_SEARCH 0
#endif

#ifndef lest_FEATURE_TIME_PRECISION
#define lest_FEATURE_TIME_PRECISION 0
#endif

#ifndef lest_FEATURE_WSTRING
#define lest_FEATURE_WSTRING 1
#define lest_FEATURE_WSTRING 1
#endif

#if lest_FEATURE_REGEX_SEARCH
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.29.1"
#define lest_VERSION "1.30.0"

#ifndef lest_FEATURE_COLOURISE
# define lest_FEATURE_COLOURISE 0
Expand Down

0 comments on commit d957f8c

Please sign in to comment.