diff --git a/BUILDING.md b/BUILDING.md index 7096905..9f8031d 100644 --- a/BUILDING.md +++ b/BUILDING.md @@ -19,10 +19,10 @@ cmake -B libfork/build -S libfork Build and install: ```sh -/home/linuxbrew/.linuxbrew/bin/cmake --install libfork/build +cmake --install libfork/build ``` -Note: this step may need `sudo` privileges if you are installing to a system directory. +Note: The last step may need `sudo` privileges if you are installing to a system directory. ## Pre-requisites diff --git a/CMakePresets.json b/CMakePresets.json index ed1b77f..ae56236 100644 --- a/CMakePresets.json +++ b/CMakePresets.json @@ -129,7 +129,7 @@ "cacheVariables": { "ENABLE_COVERAGE": "ON", "CMAKE_BUILD_TYPE": "Coverage", - "CMAKE_CXX_FLAGS_COVERAGE": "-Og -g --coverage -fkeep-inline-functions -fkeep-static-functions", + "CMAKE_CXX_FLAGS_COVERAGE": "-O3 -g --coverage -fkeep-inline-functions -fkeep-static-functions", "CMAKE_EXE_LINKER_FLAGS_COVERAGE": "--coverage", "CMAKE_SHARED_LINKER_FLAGS_COVERAGE": "--coverage" } diff --git a/ChangeLog.md b/ChangeLog.md index 7a57899..960eefd 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -12,20 +12,12 @@ ### Meta --> -## [**Version 3.x.0**](https://github.com/ConorWilliams/libfork/compare/v3.7.0...v3.x.0) - -### Added - -### Changed - -### Removed +## [**Version 3.x.0**](https://github.com/ConorWilliams/libfork/compare/v3.7.0...v3.7.1) ### Bugfixes Relaxed `just` from `async_invocable` to `callable`. -### Meta - ## [**Version 3.7.0**](https://github.com/ConorWilliams/libfork/compare/v3.6.0...v3.7.0) This version of libfork introduces futures as a way to generalize `sync_wait` and makes many small implementation changes to enhance safety. diff --git a/README.md b/README.md index f02bfe2..7c37c1c 100644 --- a/README.md +++ b/README.md @@ -92,7 +92,7 @@ Libfork is available via conancenter. Add the following line to your `conanfile. ```ini [requires] -libfork/3.7.0 +libfork/3.7.1 ``` and install it to conan2 cache: @@ -135,7 +135,7 @@ include(FetchContent) FetchContent_Declare( libfork GIT_REPOSITORY https://github.com/conorwilliams/libfork.git - GIT_TAG v3.7.0 + GIT_TAG v3.7.1 GIT_SHALLOW TRUE ) diff --git a/include/libfork/core/macro.hpp b/include/libfork/core/macro.hpp index cd1f13c..11a7565 100644 --- a/include/libfork/core/macro.hpp +++ b/include/libfork/core/macro.hpp @@ -40,7 +40,7 @@ * * Increments when bug fixes are made in an API backward compatible manner. */ -#define LF_VERSION_PATCH 0 +#define LF_VERSION_PATCH 1 /** * @brief Use to conditionally decorate lambdas and ``operator()`` (alongside ``LF_STATIC_CONST``) with diff --git a/package/vcpkg/ports/libfork/vcpkg.json b/package/vcpkg/ports/libfork/vcpkg.json index 7ba0737..a005556 100644 --- a/package/vcpkg/ports/libfork/vcpkg.json +++ b/package/vcpkg/ports/libfork/vcpkg.json @@ -1,6 +1,6 @@ { "name": "libfork", - "version": "3.7.0", + "version": "3.7.1", "homepage": "https://github.com/conorwilliams/libfork", "description": "A bleeding-edge, lock-free, wait-free, continuation-stealing fork-join library built on C++20's coroutines.", "license": "MPL-2.0", diff --git a/single_header/libfork.hpp b/single_header/libfork.hpp index fe80997..e95079d 100644 --- a/single_header/libfork.hpp +++ b/single_header/libfork.hpp @@ -164,7 +164,7 @@ * * Increments when bug fixes are made in an API backward compatible manner. */ -#define LF_VERSION_PATCH 0 +#define LF_VERSION_PATCH 1 /** * @brief Use to conditionally decorate lambdas and ``operator()`` (alongside ``LF_STATIC_CONST``) with