Skip to content

Commit e88abcf

Browse files
committed
Release 0.2.0
1 parent f5ae65c commit e88abcf

File tree

2 files changed

+24
-1
lines changed

2 files changed

+24
-1
lines changed

Changelog.md

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

88
## [Unreleased]
9+
10+
## [0.2.0]
11+
12+
- many improvements to `maturin_import_hook site install` [#11](https://github.com/PyO3/maturin-import-hook/pull/11)
13+
- `--args="..."` to specify which arguments should be used with maturin when installing into `sitecustomize.py`
14+
- automatically detect if `--uv` should be used
15+
- enable/disable project or rs file importer with
16+
`--project-importer/--no-project-importer` and `--rs-file-importer/--no-rs-file-importer`
17+
- ignore directories with `.maturin_hook_ignore` file marker and ignore `.py` files by default [#10](https://github.com/PyO3/maturin-import-hook/pull/10)
18+
- caching and optimisation to greatly reduce overhead when searching for maturin packages [#8](https://github.com/PyO3/maturin-import-hook/pull/8)
19+
- support clearing cache with `importlib.invalidate_caches()` [#8](https://github.com/PyO3/maturin-import-hook/pull/8)
20+
- upgrade to support maturin 1.7.8 [#9](https://github.com/PyO3/maturin-import-hook/pull/9)
21+
- option to install into usercustomize [#5](https://github.com/PyO3/maturin-import-hook/pull/5)
22+
- `maturin_import_hook site install --force` option to overwrite previous installation [#5](https://github.com/PyO3/maturin-import-hook/pull/5)
23+
- ignore `ImportError` in `sitecustomize.py` (in case user uninstalls `maturin_import_hook`) [#5](https://github.com/PyO3/maturin-import-hook/pull/5)
24+
25+
## [0.1.0]
26+
27+
Initial release of the import hook.
28+
29+
[Unreleased]: https://github.com/pyo3/maturin-import-hook/compare/v0.2.0...HEAD
30+
[0.2.0]: https://github.com/pyo3/maturin-import-hook/compare/v0.1.0...v0.2.0
31+
[0.1.0]: https://github.com/pyo3/maturin-import-hook/compare/c2689735a61a322998f7304a113b7c74b8108ab3...v0.1.0

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ authors = [
55
{name = "Matthew Broadway", email = "mattdbway@gmail.com"}
66
]
77
readme = "README.md"
8-
version = "0.1.0"
8+
version = "0.2.0"
99
requires-python = ">=3.9"
1010
dependencies = [
1111
"filelock",

0 commit comments

Comments
 (0)