Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

⬆️ v2.1.1 #643

Merged
merged 1 commit into from
Nov 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
cmake_minimum_required(VERSION 3.21...3.25)
project(
ut
VERSION 2.1.0
VERSION 2.1.1
LANGUAGES CXX
)

Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ target_link_libraries(my_test PRIVATE Boost::ut)
> [Optional] [Conan](https://conan.io) integration

The [boost-ext-ut](https://conan.io/center/boost-ext-ut) package is available from [Conan Center](https://conan.io/center/).
Just include it in your project's Conanfile with `boost-ext-ut/2.1.0`.
Just include it in your project's Conanfile with `boost-ext-ut/2.1.1`.

</p>
</details>
Expand Down Expand Up @@ -1244,7 +1244,7 @@ int main() {
```cpp
export module boost.ut; /// __cpp_modules

namespace boost::inline ext::ut::inline v2_1_0 {
namespace boost::inline ext::ut::inline v2_1_1 {
/**
* Represents test suite object
*/
Expand Down Expand Up @@ -1605,7 +1605,7 @@ namespace boost::inline ext::ut::inline v2_1_0 {

| Option | Description | Example |
|-|-|-|
| `BOOST_UT_VERSION` | Current version | `2'1'0` |
| `BOOST_UT_VERSION` | Current version | `2'1'1` |

</p>
</details>
Expand Down
6 changes: 3 additions & 3 deletions include/boost/ut.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ export import std;
#elif not defined(__cpp_static_assert)
#error "[Boost::ext].UT requires support for static assert";
#else
#define BOOST_UT_VERSION 2'1'0
#define BOOST_UT_VERSION 2'1'1

#if defined(__has_builtin) and defined(__GNUC__) and (__GNUC__ < 10) and \
not defined(__clang__)
Expand Down Expand Up @@ -109,7 +109,7 @@ struct unique_name_for_auto_detect_prefix_and_suffix_length_0123456789_struct_ {
};

BOOST_UT_EXPORT
namespace boost::inline ext::ut::inline v2_1_0 {
namespace boost::inline ext::ut::inline v2_1_1 {
namespace utility {
template <class>
class function;
Expand Down Expand Up @@ -3324,7 +3324,7 @@ using operators::operator not;
using operators::operator|;
using operators::operator/;
using operators::operator>>;
} // namespace boost::inline ext::ut::inline v2_1_0
} // namespace boost::inline ext::ut::inline v2_1_1

#if (defined(__GNUC__) || defined(__clang__) || defined(__INTEL_COMPILER)) && \
!defined(__EMSCRIPTEN__)
Expand Down
Loading