Skip to content

Commit 5329a8d

Browse files
author
TinySemVer
committed
Release: v0.2.1 [skip ci]
### Patch - Make: Nightly CI (3ad1e91)
1 parent 18814b6 commit 5329a8d

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.14)
22

33
project(
44
fork_union
5-
VERSION 0.2.0
5+
VERSION 0.2.1
66
DESCRIPTION "Minimalistic C++ thread-pool designed for SIMT-style 'Fork-Join' parallelism"
77
LANGUAGES CXX
88
)

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "fork_union"
3-
version = "0.2.0"
3+
version = "0.2.1"
44
edition = "2021"
55
authors = ["Ash Vardanian"]
66
license = "Apache-2.0"

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.2.0
1+
0.2.1

include/fork_union.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
#define FORK_UNION_VERSION_MAJOR 0
1515
#define FORK_UNION_VERSION_MINOR 2
16-
#define FORK_UNION_VERSION_PATCH 0
16+
#define FORK_UNION_VERSION_PATCH 1
1717

1818
/**
1919
* On C++17 and later we can detect misuse of lambdas that are not properly annotated.

0 commit comments

Comments
 (0)