Skip to content

Commit 6a3d4c1

Browse files
committed
⬆️ v2.0.0
1 parent e45ea7e commit 6a3d4c1

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
cmake_minimum_required(VERSION 3.21...3.25)
88
project(
99
ut
10-
VERSION 1.1.9
10+
VERSION 2.0.0
1111
LANGUAGES CXX
1212
)
1313

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ target_link_libraries(my_test PRIVATE Boost::ut)
190190
> [Optional] [Conan](https://conan.io) integration
191191
192192
The [boost-ext-ut](https://conan.io/center/boost-ext-ut) package is available from [Conan Center](https://conan.io/center/).
193-
Just include it in your project's Conanfile with `boost-ext-ut/1.1.9`.
193+
Just include it in your project's Conanfile with `boost-ext-ut/2.0.0`.
194194

195195
</p>
196196
</details>
@@ -1243,7 +1243,7 @@ int main() {
12431243
```cpp
12441244
export module boost.ut; /// __cpp_modules
12451245
1246-
namespace boost::inline ext::ut::inline v1_1_9 {
1246+
namespace boost::inline ext::ut::inline v2_0_0 {
12471247
/**
12481248
* Represents test suite object
12491249
*/
@@ -1604,7 +1604,7 @@ namespace boost::inline ext::ut::inline v1_1_9 {
16041604

16051605
| Option | Description | Example |
16061606
|-|-|-|
1607-
| `BOOST_UT_VERSION` | Current version | `1'1'9` |
1607+
| `BOOST_UT_VERSION` | Current version | `2'0'0` |
16081608

16091609
</p>
16101610
</details>

include/boost/ut.hpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ export import std;
5151
#elif not defined(__cpp_static_assert)
5252
#error "[Boost::ext].UT requires support for static assert";
5353
#else
54-
#define BOOST_UT_VERSION 1'1'9
54+
#define BOOST_UT_VERSION 2'0'0
5555

5656
#if defined(__has_builtin) and defined(__GNUC__) and (__GNUC__ < 10) and \
5757
not defined(__clang__)
@@ -103,7 +103,7 @@ struct _unique_name_for_auto_detect_prefix_and_suffix_lenght_0123456789_struct {
103103
};
104104

105105
BOOST_UT_EXPORT
106-
namespace boost::inline ext::ut::inline v1_1_9 {
106+
namespace boost::inline ext::ut::inline v2_0_0 {
107107
namespace utility {
108108
template <class>
109109
class function;
@@ -3269,7 +3269,7 @@ using operators::operator not;
32693269
using operators::operator|;
32703270
using operators::operator/;
32713271
using operators::operator>>;
3272-
} // namespace boost::inline ext::ut::inline v1_1_9
3272+
} // namespace boost::inline ext::ut::inline v2_0_0
32733273

32743274
#if (defined(__GNUC__) || defined(__clang__) || defined(__INTEL_COMPILER)) && \
32753275
!defined(__EMSCRIPTEN__)

0 commit comments

Comments
 (0)