Skip to content

Commit

Permalink
v0.1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
stotko committed Nov 8, 2024
1 parent 8962eb1 commit 21989de
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 4 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,14 @@ 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.1.4] - 2024-11-08

### Fixed

- Handle single file stubs in skip condition [@stotko](https://github.com/stotko) ([\#44](https://github.com/vc-bonn/charonload/pull/44))
- Consider all installations paths for exclusion [@stotko](https://github.com/stotko) ([\#43](https://github.com/vc-bonn/charonload/pull/43))


## [0.1.3] - 2024-10-21

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

- Initial version

[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
[0.1.1]: https://github.com/vc-bonn/charonload/compare/v0.1.0...v0.1.1
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.3"
version = "0.1.4"
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.3")
set(PACKAGE_VERSION "0.1.4")

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

if("0.1.3" MATCHES "^([0-9]+)\\.([0-9]+)")
if("0.1.4" 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.3")
set(CVF_VERSION_MAJOR "0.1.4")
set(CVF_VERSION_MINOR "")
endif()

Expand Down

0 comments on commit 21989de

Please sign in to comment.