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
204204curl -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
217217include(FetchContent)
218218FetchContent_Declare(citor
219219 GIT_REPOSITORY https://github.com/Lallapallooza/citor.git
220- GIT_TAG v0.2.1 )
220+ GIT_TAG v0.2.2 )
221221FetchContent_MakeAvailable(citor)
222222
223223target_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 ")
230230target_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
249249The 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)
261261target_link_libraries(my_app PRIVATE citor::citor)
262262```
263263
0 commit comments