Skip to content

Commit 0f8d85d

Browse files
committed
⬆️ v2.0.1
1 parent 93cfddb commit 0f8d85d

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 2.0.0
10+
VERSION 2.0.1
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/2.0.0`.
193+
Just include it in your project's Conanfile with `boost-ext-ut/2.0.1`.
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 v2_0_0 {
1246+
namespace boost::inline ext::ut::inline v2_0_1 {
12471247
/**
12481248
* Represents test suite object
12491249
*/
@@ -1604,7 +1604,7 @@ namespace boost::inline ext::ut::inline v2_0_0 {
16041604

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

16091609
</p>
16101610
</details>

include/boost/ut.hpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ export import std;
5757
#elif not defined(__cpp_static_assert)
5858
#error "[Boost::ext].UT requires support for static assert";
5959
#else
60-
#define BOOST_UT_VERSION 2'0'0
60+
#define BOOST_UT_VERSION 2'0'1
6161

6262
#if defined(__has_builtin) and defined(__GNUC__) and (__GNUC__ < 10) and \
6363
not defined(__clang__)
@@ -109,7 +109,7 @@ struct _unique_name_for_auto_detect_prefix_and_suffix_lenght_0123456789_struct {
109109
};
110110

111111
BOOST_UT_EXPORT
112-
namespace boost::inline ext::ut::inline v2_0_0 {
112+
namespace boost::inline ext::ut::inline v2_0_1 {
113113
namespace utility {
114114
template <class>
115115
class function;
@@ -3276,7 +3276,7 @@ using operators::operator not;
32763276
using operators::operator|;
32773277
using operators::operator/;
32783278
using operators::operator>>;
3279-
} // namespace boost::inline ext::ut::inline v2_0_0
3279+
} // namespace boost::inline ext::ut::inline v2_0_1
32803280

32813281
#if (defined(__GNUC__) || defined(__clang__) || defined(__INTEL_COMPILER)) && \
32823282
!defined(__EMSCRIPTEN__)

0 commit comments

Comments
 (0)