Skip to content

Commit fca2ef7

Browse files
committed
v0.1.3
1 parent 2faec40 commit fca2ef7

File tree

3 files changed

+18
-4
lines changed

3 files changed

+18
-4
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,18 @@ 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.3] - 2024-10-21
10+
11+
### Added
12+
13+
- Print summary of modifications in clean and import steps [@stotko](https://github.com/stotko) ([\#40](https://github.com/vc-bonn/charonload/pull/40))
14+
15+
### Fixed
16+
17+
- Ignore relative paths in collected DLL directories [@stotko](https://github.com/stotko) ([\#39](https://github.com/vc-bonn/charonload/pull/39))
18+
- Skip passing empty arguments to stub generation [@stotko](https://github.com/stotko) ([\#38](https://github.com/vc-bonn/charonload/pull/38))
19+
20+
921
## [0.1.2] - 2024-07-29
1022

1123
### Added
@@ -41,5 +53,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
4153

4254
- Initial version
4355

56+
[0.1.3]: https://github.com/vc-bonn/charonload/compare/v0.1.2...v0.1.3
57+
[0.1.2]: https://github.com/vc-bonn/charonload/compare/v0.1.1...v0.1.2
4458
[0.1.1]: https://github.com/vc-bonn/charonload/compare/v0.1.0...v0.1.1
4559
[0.1.0]: https://github.com/vc-bonn/charonload/releases/tag/v0.1.0

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

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

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

0 commit comments

Comments
 (0)