Skip to content

Commit 8e0b8de

Browse files
committed
v0.2.1
1 parent d84ed96 commit 8e0b8de

File tree

3 files changed

+12
-4
lines changed

3 files changed

+12
-4
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,13 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

88

9+
## [0.2.1] - 2025-06-07
10+
11+
### Fixed
12+
13+
- Fix propagation of PyTorch CUDA flags for multiple archs [@stotko](https://github.com/stotko) ([\#59](https://github.com/vc-bonn/charonload/pull/59))
14+
15+
916
## [0.2.0] - 2025-05-13
1017

1118
### Added
@@ -81,6 +88,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
8188

8289
- Initial version
8390

91+
[0.2.1]: https://github.com/vc-bonn/charonload/compare/v0.2.0...v0.2.1
8492
[0.2.0]: https://github.com/vc-bonn/charonload/compare/v0.1.4...v0.2.0
8593
[0.1.4]: https://github.com/vc-bonn/charonload/compare/v0.1.3...v0.1.4
8694
[0.1.3]: https://github.com/vc-bonn/charonload/compare/v0.1.2...v0.1.3

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "charonload"
3-
version = "0.2.0"
3+
version = "0.2.1"
44
authors = [{ name = "Patrick Stotko", email = "[email protected]" }]
55
description = "Develop C++/CUDA extensions with PyTorch like Python scripts"
66
readme = "README.md"

src/charonload/cmake/charonload-config-version.cmake

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@
1010
# The variable CVF_VERSION must be set before calling configure_file().
1111

1212

13-
set(PACKAGE_VERSION "0.2.0")
13+
set(PACKAGE_VERSION "0.2.1")
1414

1515
if(PACKAGE_VERSION VERSION_LESS PACKAGE_FIND_VERSION)
1616
set(PACKAGE_VERSION_COMPATIBLE FALSE)
1717
else()
1818

19-
if("0.2.0" MATCHES "^([0-9]+)\\.([0-9]+)")
19+
if("0.2.1" MATCHES "^([0-9]+)\\.([0-9]+)")
2020
set(CVF_VERSION_MAJOR "${CMAKE_MATCH_1}")
2121
set(CVF_VERSION_MINOR "${CMAKE_MATCH_2}")
2222

@@ -27,7 +27,7 @@ else()
2727
string(REGEX REPLACE "^0+" "" CVF_VERSION_MINOR "${CVF_VERSION_MINOR}")
2828
endif()
2929
else()
30-
set(CVF_VERSION_MAJOR "0.2.0")
30+
set(CVF_VERSION_MAJOR "0.2.1")
3131
set(CVF_VERSION_MINOR "")
3232
endif()
3333

0 commit comments

Comments
 (0)