Skip to content

Commit 8e00f72

Browse files
committed
⬆️ [ut] Bump version to 1.1.8
Problem: - The current version is not reflecting stable/new features. Solution: - Update version to `1.1.8`.
1 parent 4afaf9b commit 8e00f72

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1098,7 +1098,7 @@ int main() {
10981098
```cpp
10991099
export module boost.ut; /// __cpp_modules
11001100
1101-
namespace boost::inline ext::ut::inline v1_1_7 {
1101+
namespace boost::inline ext::ut::inline v1_1_8 {
11021102
/**
11031103
* Represents test suite object
11041104
*/
@@ -1458,7 +1458,7 @@ namespace boost::inline ext::ut::inline v1_1_7 {
14581458

14591459
| Option | Description | Example |
14601460
|-|-|-|
1461-
| `BOOST_UT_VERSION` | Current version | `1'1'7` |
1461+
| `BOOST_UT_VERSION` | Current version | `1'1'8` |
14621462
| `BOOST_UT_FORWARD` | Optionally used in `.cpp` files to speed up compilation of multiple suites | |
14631463
| `BOOST_UT_IMPLEMENTATION` | Optionally used in `main.cpp` file to provide `ut` implementation (have to be used in combination with `BOOST_UT_FORWARD`) | |
14641464

include/boost/ut.hpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ export import std;
3737
#elif not defined(__cpp_static_assert)
3838
#error "[Boost::ext].UT requires support for static assert";
3939
#else
40-
#define BOOST_UT_VERSION 1'1'7
40+
#define BOOST_UT_VERSION 1'1'8
4141

4242
#if defined(__has_builtin) and (__GNUC__ < 10) and not defined(__clang__)
4343
#undef __has_builtin
@@ -91,7 +91,7 @@ inline namespace ext {
9191
namespace ut {
9292
#endif
9393

94-
inline namespace v1_1_7 {
94+
inline namespace v1_1_8 {
9595
namespace utility {
9696
class string_view {
9797
public:
@@ -2553,7 +2553,7 @@ template <bool Constant>
25532553
using operators::operator|;
25542554
using operators::operator/;
25552555
using operators::operator>>;
2556-
} // namespace v1_1_7
2556+
} // namespace v1_1_8
25572557
} // namespace ut
25582558
} // namespace inline ext
25592559
} // namespace boost

0 commit comments

Comments
 (0)