Skip to content

Commit 347a0b2

Browse files
bump: 0.2.1 -> 0.2.2
1 parent 4ce3b3d commit 347a0b2

9 files changed

Lines changed: 18 additions & 18 deletions

File tree

CITATION.cff

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ authors:
88
email: vitaly.shutov1@gmail.com
99
repository-code: "https://github.com/Lallapallooza/citor"
1010
license: MIT
11-
version: 0.2.1
11+
version: 0.2.2
1212
keywords:
1313
- thread-pool
1414
- concurrency

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
cmake_minimum_required(VERSION 3.20)
22
project(
33
citor
4-
VERSION 0.2.1
4+
VERSION 0.2.2
55
DESCRIPTION "Header-only C++20 thread pool for sub-microsecond dispatch"
66
LANGUAGES CXX
77
)

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
| | |
1010
|---|---|
11-
| Version | `0.2.1` |
11+
| Version | `0.2.2` |
1212
| Distribution | header-only |
1313
| CMake target | `citor::citor` (INTERFACE) |
1414
| Validated target | Linux x86_64 + AVX2; Windows x86_64 best-effort |
@@ -202,7 +202,7 @@ Pick whichever path matches your project's existing dependency story.
202202
203203
```bash
204204
curl -L -o third_party/citor.hpp \
205-
https://raw.githubusercontent.com/Lallapallooza/citor/v0.2.1/single_include/citor.hpp
205+
https://raw.githubusercontent.com/Lallapallooza/citor/v0.2.2/single_include/citor.hpp
206206
```
207207

208208
```cpp
@@ -217,7 +217,7 @@ Compile with `-std=c++20 -pthread` and (recommended) `-mavx2 -mfma -DCITOR_USE_A
217217
include(FetchContent)
218218
FetchContent_Declare(citor
219219
GIT_REPOSITORY https://github.com/Lallapallooza/citor.git
220-
GIT_TAG v0.2.1)
220+
GIT_TAG v0.2.2)
221221
FetchContent_MakeAvailable(citor)
222222
223223
target_link_libraries(my_app PRIVATE citor::citor)
@@ -226,7 +226,7 @@ target_link_libraries(my_app PRIVATE citor::citor)
226226
### 3. CPM
227227

228228
```cmake
229-
CPMAddPackage("gh:Lallapallooza/citor#v0.2.1")
229+
CPMAddPackage("gh:Lallapallooza/citor#v0.2.2")
230230
target_link_libraries(my_app PRIVATE citor::citor)
231231
```
232232

@@ -242,8 +242,8 @@ Point vcpkg at this repo's `packaging/vcpkg/ports/` directory.
242242
### 5. Conan (Conan 2.x)
243243

244244
```bash
245-
conan create packaging/conan --version 0.2.1
246-
conan install --requires=citor/0.2.1 --build=missing
245+
conan create packaging/conan --version 0.2.2
246+
conan install --requires=citor/0.2.2 --build=missing
247247
```
248248

249249
The recipe is `package_type = "header-library"`, `no_copy_source = True`, `package_id().clear()`.
@@ -257,7 +257,7 @@ sudo cmake --install build
257257
```
258258

259259
```cmake
260-
find_package(citor 0.2.1 REQUIRED)
260+
find_package(citor 0.2.2 REQUIRED)
261261
target_link_libraries(my_app PRIVATE citor::citor)
262262
```
263263

include/citor/version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@
1111
// `#define CITOR_VERSION_PATCH 0` lose the version literal a regex can pin
1212
// against.
1313

14-
#define CITOR_VERSION_STRING "0.2.1"
14+
#define CITOR_VERSION_STRING "0.2.2"

packaging/conan/conanfile.py

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

1818
class CitorConan(ConanFile):
1919
name = "citor"
20-
version = "0.2.1"
20+
version = "0.2.2"
2121
license = "MIT"
2222
homepage = "https://github.com/Lallapallooza/citor"
2323
url = "https://github.com/Lallapallooza/citor"

packaging/test/consumer/conanfile.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[requires]
2-
citor/0.2.1
2+
citor/0.2.2
33

44
[generators]
55
CMakeDeps

packaging/vcpkg/ports/citor/vcpkg.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "citor",
3-
"version": "0.2.1",
3+
"version": "0.2.2",
44
"description": "Header-only C++20 thread pool tuned for sub-microsecond dispatch.",
55
"homepage": "https://github.com/Lallapallooza/citor",
66
"license": "MIT",

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "citor-dev"
3-
version = "0.2.1"
3+
version = "0.2.2"
44
description = "Dev-side hooks and tooling for the citor C++ library."
55
requires-python = ">=3.10"
66

@@ -15,7 +15,7 @@ plot = ["matplotlib>=3.8", "numpy>=1.26", "pandas>=2.1", "pandas-stubs>=2.1"]
1515

1616
[tool.commitizen]
1717
name = "cz_conventional_commits"
18-
version = "0.2.1"
18+
version = "0.2.2"
1919
tag_format = "v$version"
2020
version_scheme = "semver"
2121
update_changelog_on_bump = false

single_include/citor.hpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
// SPDX-License-Identifier: MIT
22
//
33
// citor -- header-only C++20 thread pool
4-
// version: 0.2.1
5-
// commit: b2cbd4b7bf61ae64f2445153a80e59adbdf28c0d
4+
// version: 0.2.2
5+
// commit: bc69de9fda08975def7e68ea6c2cb073b65c0726
66
// generated: 2026-05-17
77
//
88
// GENERATED FILE -- DO NOT EDIT.
@@ -13173,4 +13173,4 @@ class PoolGroup {
1317313173
// `#define CITOR_VERSION_PATCH 0` lose the version literal a regex can pin
1317413174
// against.
1317513175

13176-
#define CITOR_VERSION_STRING "0.2.1"
13176+
#define CITOR_VERSION_STRING "0.2.2"

0 commit comments

Comments
 (0)