From 0f8d85da51a417c9681fe5f26bd16c2585cb4d24 Mon Sep 17 00:00:00 2001 From: Kris Jusiak Date: Mon, 18 Dec 2023 13:10:09 -0600 Subject: [PATCH] :arrow_up: v2.0.1 --- CMakeLists.txt | 2 +- README.md | 6 +++--- include/boost/ut.hpp | 6 +++--- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index b5a6a463..5b8f8271 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -7,7 +7,7 @@ cmake_minimum_required(VERSION 3.21...3.25) project( ut - VERSION 2.0.0 + VERSION 2.0.1 LANGUAGES CXX ) diff --git a/README.md b/README.md index b22a49a3..fc0a8a6b 100644 --- a/README.md +++ b/README.md @@ -190,7 +190,7 @@ target_link_libraries(my_test PRIVATE Boost::ut) > [Optional] [Conan](https://conan.io) integration The [boost-ext-ut](https://conan.io/center/boost-ext-ut) package is available from [Conan Center](https://conan.io/center/). -Just include it in your project's Conanfile with `boost-ext-ut/2.0.0`. +Just include it in your project's Conanfile with `boost-ext-ut/2.0.1`.

@@ -1243,7 +1243,7 @@ int main() { ```cpp export module boost.ut; /// __cpp_modules -namespace boost::inline ext::ut::inline v2_0_0 { +namespace boost::inline ext::ut::inline v2_0_1 { /** * Represents test suite object */ @@ -1604,7 +1604,7 @@ namespace boost::inline ext::ut::inline v2_0_0 { | Option | Description | Example | |-|-|-| -| `BOOST_UT_VERSION` | Current version | `2'0'0` | +| `BOOST_UT_VERSION` | Current version | `2'0'1` |

diff --git a/include/boost/ut.hpp b/include/boost/ut.hpp index d68161ac..05a1790e 100644 --- a/include/boost/ut.hpp +++ b/include/boost/ut.hpp @@ -57,7 +57,7 @@ export import std; #elif not defined(__cpp_static_assert) #error "[Boost::ext].UT requires support for static assert"; #else -#define BOOST_UT_VERSION 2'0'0 +#define BOOST_UT_VERSION 2'0'1 #if defined(__has_builtin) and defined(__GNUC__) and (__GNUC__ < 10) and \ not defined(__clang__) @@ -109,7 +109,7 @@ struct _unique_name_for_auto_detect_prefix_and_suffix_lenght_0123456789_struct { }; BOOST_UT_EXPORT -namespace boost::inline ext::ut::inline v2_0_0 { +namespace boost::inline ext::ut::inline v2_0_1 { namespace utility { template class function; @@ -3276,7 +3276,7 @@ using operators::operator not; using operators::operator|; using operators::operator/; using operators::operator>>; -} // namespace boost::inline ext::ut::inline v2_0_0 +} // namespace boost::inline ext::ut::inline v2_0_1 #if (defined(__GNUC__) || defined(__clang__) || defined(__INTEL_COMPILER)) && \ !defined(__EMSCRIPTEN__)