Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,26 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).


## [0.2.0] - 2025-05-13

### Added

- Propagate PyTorch CUDA flags via CMake target [@stotko](https://github.com/stotko) ([\#57](https://github.com/vc-bonn/charonload/pull/57))
- Document JIT compiling and PyTorch handling behavior [@stotko](https://github.com/stotko) ([\#56](https://github.com/vc-bonn/charonload/pull/56))
- Support global configuration overrides with environment variables [@stotko](https://github.com/stotko) ([\#55](https://github.com/vc-bonn/charonload/pull/55))
- Add Python 3.13 support [@stotko](https://github.com/stotko) ([\#47](https://github.com/vc-bonn/charonload/pull/47))

### Changed

- Also clean if torch version has changed [@stotko](https://github.com/stotko) ([\#53](https://github.com/vc-bonn/charonload/pull/53))
- Use extension name when determining default build directory [@stotko](https://github.com/stotko) ([\#49](https://github.com/vc-bonn/charonload/pull/49))
- Defer resolving configurations until inserted into dict [@stotko](https://github.com/stotko) ([\#48](https://github.com/vc-bonn/charonload/pull/48))

### Removed

- Drop Python 3.8 support [@stotko](https://github.com/stotko) ([\#46](https://github.com/vc-bonn/charonload/pull/46))


## [0.1.4] - 2024-11-08

### Fixed
Expand Down Expand Up @@ -61,6 +81,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Initial version

[0.2.0]: https://github.com/vc-bonn/charonload/compare/v0.1.4...v0.2.0
[0.1.4]: https://github.com/vc-bonn/charonload/compare/v0.1.3...v0.1.4
[0.1.3]: https://github.com/vc-bonn/charonload/compare/v0.1.2...v0.1.3
[0.1.2]: https://github.com/vc-bonn/charonload/compare/v0.1.1...v0.1.2
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "charonload"
version = "0.1.4"
version = "0.2.0"
authors = [{ name = "Patrick Stotko", email = "[email protected]" }]
description = "Develop C++/CUDA extensions with PyTorch like Python scripts"
readme = "README.md"
Expand Down
6 changes: 3 additions & 3 deletions src/charonload/cmake/charonload-config-version.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@
# The variable CVF_VERSION must be set before calling configure_file().


set(PACKAGE_VERSION "0.1.4")
set(PACKAGE_VERSION "0.2.0")

if(PACKAGE_VERSION VERSION_LESS PACKAGE_FIND_VERSION)
set(PACKAGE_VERSION_COMPATIBLE FALSE)
else()

if("0.1.4" MATCHES "^([0-9]+)\\.([0-9]+)")
if("0.2.0" MATCHES "^([0-9]+)\\.([0-9]+)")
set(CVF_VERSION_MAJOR "${CMAKE_MATCH_1}")
set(CVF_VERSION_MINOR "${CMAKE_MATCH_2}")

Expand All @@ -27,7 +27,7 @@ else()
string(REGEX REPLACE "^0+" "" CVF_VERSION_MINOR "${CVF_VERSION_MINOR}")
endif()
else()
set(CVF_VERSION_MAJOR "0.1.4")
set(CVF_VERSION_MAJOR "0.2.0")
set(CVF_VERSION_MINOR "")
endif()

Expand Down