diff --git a/README.md b/README.md index 62b3f993..341d4ecf 100644 --- a/README.md +++ b/README.md @@ -766,7 +766,7 @@ auto ut::cfg = ut::runner{}; ```cpp export module boost.ut; /// __cpp_modules -namespace boost::ut::inline v1_1_1 { +namespace boost::ut::inline v1_1_2 { /** * Represents test suite object */ @@ -1084,7 +1084,7 @@ namespace boost::ut::inline v1_1_1 { | Option | Description | Example | |-|-|-| -| `BOOST_UT_VERSION` | Current version | `1'1'1` | +| `BOOST_UT_VERSION` | Current version | `1'1'2` | | `BOOST_UT_FORWARD` | Optionally used in `.cpp` files to speed up compilation of multiple suites | | | `BOOST_UT_IMPLEMENTATION` | Optionally used in `main.cpp` file to provide `ut` implementation (have to be used in combination with `BOOST_UT_FORWARD`) | | diff --git a/include/boost/ut.hpp b/include/boost/ut.hpp index e82e0e39..ad861e40 100644 --- a/include/boost/ut.hpp +++ b/include/boost/ut.hpp @@ -37,7 +37,7 @@ export import std; #elif not defined(__cpp_static_assert) #error "[Boost].UT requires support for static assert"; #else -#define BOOST_UT_VERSION 1'1'1 +#define BOOST_UT_VERSION 1'1'2 #if defined(BOOST_UT_FORWARD) namespace std { @@ -73,7 +73,7 @@ export namespace boost::ut { namespace boost::ut { #endif -inline namespace v1_1_1 { +inline namespace v1_1_2 { namespace utility { class string_view { public: @@ -1878,6 +1878,6 @@ using operators::operator and; using operators::operator or; using operators::operator not; using operators::operator|; -} // namespace v1_1_1 +} // namespace v1_1_2 } // namespace boost::ut #endif