File tree 4 files changed +8
-10
lines changed
4 files changed +8
-10
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ cmake_minimum_required(VERSION 3.21...3.25)
16
16
endif ()
17
17
project (
18
18
ut
19
- VERSION 2.3.0
19
+ VERSION 2.3.1
20
20
LANGUAGES CXX
21
21
)
22
22
Original file line number Diff line number Diff line change 1
- <a href =" https://conan.io/center/boost-ext-ut " target =" _blank " >![ Version] ( https://badge.fury .io/gh/ boost-ext%2Fut.svg ) </a >
1
+ <a href =" https://conan.io/center/boost-ext-ut " target =" _blank " >![ Version] ( https://img.shields .io/github/v/release/ boost-ext/ut ) </a >
2
2
<a href =" https://github.com/boost-ext/ut/actions/workflows/linux.yml " target =" _blank " >![ Linux] ( https://github.com/boost-ext/ut/actions/workflows/linux.yml/badge.svg ) </a >
3
3
<a href =" https://github.com/boost-ext/ut/actions/workflows/macos.yml " target =" _blank " >![ MacOs] ( https://github.com/boost-ext/ut/actions/workflows/macos.yml/badge.svg ) </a >
4
4
<a href =" https://github.com/boost-ext/ut/actions/workflows/windows.yml " target =" _blank " >![ Windows] ( https://github.com/boost-ext/ut/actions/workflows/windows.yml/badge.svg ) </a >
@@ -190,7 +190,7 @@ target_link_libraries(my_test PRIVATE Boost::ut)
190
190
> [ Optional] [ Conan] ( https://conan.io ) integration
191
191
192
192
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.3.0 ` .
193
+ Just include it in your project's Conanfile with ` boost-ext-ut/2.3.1 ` .
194
194
195
195
</p >
196
196
</details >
@@ -1255,7 +1255,7 @@ int main() {
1255
1255
```cpp
1256
1256
export module boost.ut; /// __cpp_modules
1257
1257
1258
- namespace boost::inline ext::ut::inline v2_3_0 {
1258
+ namespace boost::inline ext::ut::inline v2_3_1 {
1259
1259
/**
1260
1260
* Represents test suite object
1261
1261
*/
@@ -1616,7 +1616,7 @@ namespace boost::inline ext::ut::inline v2_3_0 {
1616
1616
1617
1617
| Option | Description | Example |
1618
1618
| -| -| -|
1619
- | ` BOOST_UT_VERSION ` | Current version | ` 2'3'0 ` |
1619
+ | ` BOOST_UT_VERSION ` | Current version | ` 2'3'1 ` |
1620
1620
1621
1621
</p >
1622
1622
</details >
Original file line number Diff line number Diff line change @@ -9,6 +9,4 @@ export module boost.ut;
9
9
export import std;
10
10
11
11
#define BOOST_UT_CXX_MODULES 1
12
- // #undef BOOST_UT_DISABLE_MODULE // not necessary anymore
13
-
14
12
#include " ut.hpp"
Original file line number Diff line number Diff line change 54
54
#elif not defined(__cpp_static_assert)
55
55
#error "[Boost::ext].UT requires support for static assert";
56
56
#else
57
- #define BOOST_UT_VERSION 2'3'0
57
+ #define BOOST_UT_VERSION 2'3'1
58
58
59
59
#if defined(__has_builtin) and defined(__GNUC__) and (__GNUC__ < 10) and \
60
60
not defined (__clang__)
@@ -109,7 +109,7 @@ struct unique_name_for_auto_detect_prefix_and_suffix_length_0123456789_struct_ {
109
109
};
110
110
111
111
BOOST_UT_EXPORT
112
- namespace boost ::inline ext::ut::inline v2_3_0 {
112
+ namespace boost ::inline ext::ut::inline v2_3_1 {
113
113
namespace utility {
114
114
template <class >
115
115
class function ;
@@ -3357,7 +3357,7 @@ using operators::operator not;
3357
3357
using operators::operator |;
3358
3358
using operators::operator /;
3359
3359
using operators::operator >>;
3360
- } // namespace boost::inline ext::ut::inline v2_3_0
3360
+ } // namespace boost::inline ext::ut::inline v2_3_1
3361
3361
3362
3362
#if (defined(__GNUC__) || defined(__clang__) || defined(__INTEL_COMPILER)) && \
3363
3363
!defined(__EMSCRIPTEN__)
You can’t perform that action at this time.
0 commit comments