Skip to content

Commit dce47a2

Browse files
committed
2 parents e2a4207 + 5329a8d commit dce47a2

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,7 +1,7 @@
11
[package]
22
name = "fork_union"
33
description = "Minimalistic scoped thread-pool designed for SIMT-style 'Fork-Join' parallelism"
4-
version = "0.1.1"
4+
version = "0.2.1"
55
edition = "2021"
66
authors = ["Ash Vardanian"]
77
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)