Releases · martinmoene/lest (original) (raw)

1.35.2

This release:

1.35.1

This release:

1.35.0

This release :

Thanks to @ninnghazad drawing attention to both.

1.34.1

To support conan and vcpkg installations, examples now specify folder lest in the include directives, like: #include "lest/lest.hpp".

1.34.0

This release adds version macros lest_MAJOR, lest_MINOR and lest_PATCH to lest.hpp and lest_cpp03.hpp.

Further it adds scripts to create conan and vcpkgs packages.

1.33.5

This bug-fix release removes typename from the seed_t declaration that is invalid in C++98.

In C++98, typename may not be used with a non-dependent type name. In C++11 this restriction has been lifted. Now, in lest_cpp03 the C++11 implementation is chosen for VC 12 (VS 2013) as this compiler supports enough of C++11 for lest, however it does not with respect to typename.

1.33.4

This bug-fix release fixes the type seed_t to it's use with std::mt19937 or with std::srand().

1.33.3

This bug-fix release fixes reporting of sections, issue #65. Thanks to @OnTheTop.

1.33.2

This bug-fix release suppresses the warning message unused parameter ‘lest_env’ [-Werror=unused-parameter] with lest_cpp03.hpp. Further the style of #if defined has been changed to use parentheses. For the rest, lest.hpp is unchanged.

1.33.1

This bug-fix release fixes a link error for character reporting for VC8 (Visual Studio 2005) in lest_cpp03.hpp. Apart from the version number, lest.hpp is unchanged.