Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
ConorWilliams committed Feb 29, 2024
1 parent ee2700b commit 95e38b1
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 17 deletions.
4 changes: 2 additions & 2 deletions BUILDING.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion CMakePresets.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
Expand Down
10 changes: 1 addition & 9 deletions ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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
)
Expand Down
2 changes: 1 addition & 1 deletion include/libfork/core/macro.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion package/vcpkg/ports/libfork/vcpkg.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
2 changes: 1 addition & 1 deletion single_header/libfork.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 95e38b1

Please sign in to comment.