Skip to content

Commit ccd496d

Browse files
author
TinySemVer
committed
Release: v0.3.0 [skip ci]
### Minor - Add: `Default` allocator APIs (eb8121f)
1 parent ac3e55c commit ccd496d

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
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.3
5+
VERSION 0.3.0
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.2.3"
4+
version = "0.3.0"
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.3
1+
0.3.0

include/fork_union.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212
#include <cassert> // `assert`
1313

1414
#define FORK_UNION_VERSION_MAJOR 0
15-
#define FORK_UNION_VERSION_MINOR 2
16-
#define FORK_UNION_VERSION_PATCH 3
15+
#define FORK_UNION_VERSION_MINOR 3
16+
#define FORK_UNION_VERSION_PATCH 0
1717

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

0 commit comments

Comments
 (0)