From e0f1c0f11556b9069ecf8d3b6c9fa8591a4fa962 Mon Sep 17 00:00:00 2001 From: Kris Jusiak Date: Sun, 15 Mar 2020 11:42:04 -0600 Subject: [PATCH] :arrow_up: [ut] Bump version to `1.1.7` Problem: - The current version is not reflecting stable/new features. Solution: - Update version to `1.1.7`. --- README.md | 4 ++-- include/boost/ut.hpp | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 6471c04d..5e9f509e 100644 --- a/README.md +++ b/README.md @@ -933,7 +933,7 @@ int main() { ```cpp export module boost.ut; /// __cpp_modules -namespace boost::ut::inline v1_1_6 { +namespace boost::ut::inline v1_1_7 { /** * Represents test suite object */ @@ -1280,7 +1280,7 @@ namespace boost::ut::inline v1_1_6 { | Option | Description | Example | |-|-|-| -| `BOOST_UT_VERSION` | Current version | `1'1'6` | +| `BOOST_UT_VERSION` | Current version | `1'1'7` | | `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 96449404..82fec3a7 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'6 +#define BOOST_UT_VERSION 1'1'7 #if defined(__has_builtin) and (__GNUC__ < 10) and not defined(__clang__) #undef __has_builtin @@ -88,7 +88,7 @@ export namespace boost::ut { namespace boost::ut { #endif -inline namespace v1_1_6 { +inline namespace v1_1_7 { namespace utility { class string_view { public: @@ -2320,6 +2320,6 @@ using operators::operator and; using operators::operator or; using operators::operator not; using operators::operator|; -} // namespace v1_1_6 +} // namespace v1_1_7 } // namespace boost::ut #endif