Skip to content

Commit 21989de

Browse files
committed
v0.1.4
1 parent 8962eb1 commit 21989de

File tree

3 files changed

+13
-4
lines changed

3 files changed

+13
-4
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,14 @@ 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.1.4] - 2024-11-08
10+
11+
### Fixed
12+
13+
- Handle single file stubs in skip condition [@stotko](https://github.com/stotko) ([\#44](https://github.com/vc-bonn/charonload/pull/44))
14+
- Consider all installations paths for exclusion [@stotko](https://github.com/stotko) ([\#43](https://github.com/vc-bonn/charonload/pull/43))
15+
16+
917
## [0.1.3] - 2024-10-21
1018

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

5462
- Initial version
5563

64+
[0.1.4]: https://github.com/vc-bonn/charonload/compare/v0.1.3...v0.1.4
5665
[0.1.3]: https://github.com/vc-bonn/charonload/compare/v0.1.2...v0.1.3
5766
[0.1.2]: https://github.com/vc-bonn/charonload/compare/v0.1.1...v0.1.2
5867
[0.1.1]: https://github.com/vc-bonn/charonload/compare/v0.1.0...v0.1.1

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.1.3"
3+
version = "0.1.4"
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.1.3")
13+
set(PACKAGE_VERSION "0.1.4")
1414

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

19-
if("0.1.3" MATCHES "^([0-9]+)\\.([0-9]+)")
19+
if("0.1.4" 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.1.3")
30+
set(CVF_VERSION_MAJOR "0.1.4")
3131
set(CVF_VERSION_MINOR "")
3232
endif()
3333

0 commit comments

Comments
 (0)