release: 0.17.1
This commit is contained in:
parent
511303a102
commit
caaf7bbda7
|
@ -66,6 +66,8 @@
|
||||||
/v0.16.6/* https://pyo3.github.io/pyo3/v0.16.6/:splat 200
|
/v0.16.6/* https://pyo3.github.io/pyo3/v0.16.6/:splat 200
|
||||||
/v0.17.0/doc/* https://docs.rs/pyo3/0.17.0/:splat
|
/v0.17.0/doc/* https://docs.rs/pyo3/0.17.0/:splat
|
||||||
/v0.17.0/* https://pyo3.github.io/pyo3/v0.17.0/:splat 200
|
/v0.17.0/* https://pyo3.github.io/pyo3/v0.17.0/:splat 200
|
||||||
|
/v0.17.1/doc/* https://docs.rs/pyo3/0.17.1/:splat
|
||||||
|
/v0.17.1/* https://pyo3.github.io/pyo3/v0.17.1/:splat 200
|
||||||
/v0.2.3/doc/* https://docs.rs/pyo3/0.2.3/:splat
|
/v0.2.3/doc/* https://docs.rs/pyo3/0.2.3/:splat
|
||||||
/v0.2.3/* https://pyo3.github.io/pyo3/v0.2.3/:splat 200
|
/v0.2.3/* https://pyo3.github.io/pyo3/v0.2.3/:splat 200
|
||||||
/v0.2.4/doc/* https://docs.rs/pyo3/0.2.4/:splat
|
/v0.2.4/doc/* https://docs.rs/pyo3/0.2.4/:splat
|
||||||
|
|
|
@ -6,7 +6,7 @@ PyO3 versions, please see the [migration guide](https://pyo3.rs/latest/migration
|
||||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
|
||||||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
## [Unreleased]
|
## [0.17.1] - 2022-08-28
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|
||||||
|
@ -1275,7 +1275,8 @@ Yanked
|
||||||
|
|
||||||
- Initial release
|
- Initial release
|
||||||
|
|
||||||
[Unreleased]: https://github.com/pyo3/pyo3/compare/v0.17.0...HEAD
|
[Unreleased]: https://github.com/pyo3/pyo3/compare/v0.17.1...HEAD
|
||||||
|
[0.17.1]: https://github.com/pyo3/pyo3/compare/v0.17.0...v0.17.1
|
||||||
[0.17.0]: https://github.com/pyo3/pyo3/compare/v0.16.6...v0.17.0
|
[0.17.0]: https://github.com/pyo3/pyo3/compare/v0.16.6...v0.17.0
|
||||||
[0.16.6]: https://github.com/pyo3/pyo3/compare/v0.16.5...v0.16.6
|
[0.16.6]: https://github.com/pyo3/pyo3/compare/v0.16.5...v0.16.6
|
||||||
[0.16.5]: https://github.com/pyo3/pyo3/compare/v0.16.4...v0.16.5
|
[0.16.5]: https://github.com/pyo3/pyo3/compare/v0.16.4...v0.16.5
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "pyo3"
|
name = "pyo3"
|
||||||
version = "0.17.0"
|
version = "0.17.1"
|
||||||
description = "Bindings to Python interpreter"
|
description = "Bindings to Python interpreter"
|
||||||
authors = ["PyO3 Project and Contributors <https://github.com/PyO3>"]
|
authors = ["PyO3 Project and Contributors <https://github.com/PyO3>"]
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
|
@ -20,10 +20,10 @@ parking_lot = ">= 0.11, < 0.13"
|
||||||
memoffset = "0.6.5"
|
memoffset = "0.6.5"
|
||||||
|
|
||||||
# ffi bindings to the python interpreter, split into a separate crate so they can be used independently
|
# ffi bindings to the python interpreter, split into a separate crate so they can be used independently
|
||||||
pyo3-ffi = { path = "pyo3-ffi", version = "=0.17.0" }
|
pyo3-ffi = { path = "pyo3-ffi", version = "=0.17.1" }
|
||||||
|
|
||||||
# support crates for macros feature
|
# support crates for macros feature
|
||||||
pyo3-macros = { path = "pyo3-macros", version = "=0.17.0", optional = true }
|
pyo3-macros = { path = "pyo3-macros", version = "=0.17.1", optional = true }
|
||||||
indoc = { version = "1.0.3", optional = true }
|
indoc = { version = "1.0.3", optional = true }
|
||||||
unindent = { version = "0.1.4", optional = true }
|
unindent = { version = "0.1.4", optional = true }
|
||||||
|
|
||||||
|
@ -53,7 +53,7 @@ rayon = "1.0.2"
|
||||||
widestring = "0.5.1"
|
widestring = "0.5.1"
|
||||||
|
|
||||||
[build-dependencies]
|
[build-dependencies]
|
||||||
pyo3-build-config = { path = "pyo3-build-config", version = "0.17.0", features = ["resolve-config"] }
|
pyo3-build-config = { path = "pyo3-build-config", version = "0.17.1", features = ["resolve-config"] }
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = ["macros"]
|
default = ["macros"]
|
||||||
|
|
|
@ -68,7 +68,7 @@ name = "string_sum"
|
||||||
crate-type = ["cdylib"]
|
crate-type = ["cdylib"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
pyo3 = { version = "0.17.0", features = ["extension-module"] }
|
pyo3 = { version = "0.17.1", features = ["extension-module"] }
|
||||||
```
|
```
|
||||||
|
|
||||||
**`src/lib.rs`**
|
**`src/lib.rs`**
|
||||||
|
@ -134,7 +134,7 @@ Start a new project with `cargo new` and add `pyo3` to the `Cargo.toml` like th
|
||||||
|
|
||||||
```toml
|
```toml
|
||||||
[dependencies.pyo3]
|
[dependencies.pyo3]
|
||||||
version = "0.17.0"
|
version = "0.17.1"
|
||||||
features = ["auto-initialize"]
|
features = ["auto-initialize"]
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
|
@ -5,7 +5,7 @@ publish = false
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
pyo3 = { version = "0.17.0", path = "..", features = ["auto-initialize", "extension-module"] }
|
pyo3 = { version = "0.17.1", path = "..", features = ["auto-initialize", "extension-module"] }
|
||||||
|
|
||||||
[[example]]
|
[[example]]
|
||||||
name = "decorator"
|
name = "decorator"
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
variable::set("PYO3_VERSION", "0.17.0");
|
variable::set("PYO3_VERSION", "0.17.1");
|
||||||
file::rename(".template/Cargo.toml", "Cargo.toml");
|
file::rename(".template/Cargo.toml", "Cargo.toml");
|
||||||
file::rename(".template/pyproject.toml", "pyproject.toml");
|
file::rename(".template/pyproject.toml", "pyproject.toml");
|
||||||
file::rename(".template/tox.ini", "tox.ini");
|
file::rename(".template/tox.ini", "tox.ini");
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
variable::set("PYO3_VERSION", "0.17.0");
|
variable::set("PYO3_VERSION", "0.17.1");
|
||||||
file::rename(".template/Cargo.toml", "Cargo.toml");
|
file::rename(".template/Cargo.toml", "Cargo.toml");
|
||||||
file::rename(".template/pyproject.toml", "pyproject.toml");
|
file::rename(".template/pyproject.toml", "pyproject.toml");
|
||||||
file::rename(".template/tox.ini", "tox.ini");
|
file::rename(".template/tox.ini", "tox.ini");
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
variable::set("PYO3_VERSION", "0.17.0");
|
variable::set("PYO3_VERSION", "0.17.1");
|
||||||
file::rename(".template/Cargo.toml", "Cargo.toml");
|
file::rename(".template/Cargo.toml", "Cargo.toml");
|
||||||
file::rename(".template/setup.cfg", "setup.cfg");
|
file::rename(".template/setup.cfg", "setup.cfg");
|
||||||
file::rename(".template/tox.ini", "tox.ini");
|
file::rename(".template/tox.ini", "tox.ini");
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
variable::set("PYO3_VERSION", "0.17.0");
|
variable::set("PYO3_VERSION", "0.17.1");
|
||||||
file::rename(".template/Cargo.toml", "Cargo.toml");
|
file::rename(".template/Cargo.toml", "Cargo.toml");
|
||||||
file::rename(".template/tox.ini", "tox.ini");
|
file::rename(".template/tox.ini", "tox.ini");
|
||||||
file::delete(".template");
|
file::delete(".template");
|
||||||
|
|
|
@ -105,7 +105,7 @@ name = "pyo3_example"
|
||||||
crate-type = ["cdylib"]
|
crate-type = ["cdylib"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
pyo3 = { version = "0.17.0", features = ["extension-module"] }
|
pyo3 = { version = "0.17.1", features = ["extension-module"] }
|
||||||
```
|
```
|
||||||
|
|
||||||
## pyproject.toml
|
## pyproject.toml
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "pyo3-build-config"
|
name = "pyo3-build-config"
|
||||||
version = "0.17.0"
|
version = "0.17.1"
|
||||||
description = "Build configuration for the PyO3 ecosystem"
|
description = "Build configuration for the PyO3 ecosystem"
|
||||||
authors = ["PyO3 Project and Contributors <https://github.com/PyO3>"]
|
authors = ["PyO3 Project and Contributors <https://github.com/PyO3>"]
|
||||||
keywords = ["pyo3", "python", "cpython", "ffi"]
|
keywords = ["pyo3", "python", "cpython", "ffi"]
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "pyo3-ffi"
|
name = "pyo3-ffi"
|
||||||
version = "0.17.0"
|
version = "0.17.1"
|
||||||
description = "Python-API bindings for the PyO3 ecosystem"
|
description = "Python-API bindings for the PyO3 ecosystem"
|
||||||
authors = ["PyO3 Project and Contributors <https://github.com/PyO3>"]
|
authors = ["PyO3 Project and Contributors <https://github.com/PyO3>"]
|
||||||
keywords = ["pyo3", "python", "cpython", "ffi"]
|
keywords = ["pyo3", "python", "cpython", "ffi"]
|
||||||
|
@ -39,4 +39,4 @@ generate-abi3-import-lib = ["generate-import-lib"]
|
||||||
|
|
||||||
|
|
||||||
[build-dependencies]
|
[build-dependencies]
|
||||||
pyo3-build-config = { path = "../pyo3-build-config", version = "0.17.0", features = ["resolve-config"] }
|
pyo3-build-config = { path = "../pyo3-build-config", version = "0.17.1", features = ["resolve-config"] }
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "pyo3-macros-backend"
|
name = "pyo3-macros-backend"
|
||||||
version = "0.17.0"
|
version = "0.17.1"
|
||||||
description = "Code generation for PyO3 package"
|
description = "Code generation for PyO3 package"
|
||||||
authors = ["PyO3 Project and Contributors <https://github.com/PyO3>"]
|
authors = ["PyO3 Project and Contributors <https://github.com/PyO3>"]
|
||||||
keywords = ["pyo3", "python", "cpython", "ffi"]
|
keywords = ["pyo3", "python", "cpython", "ffi"]
|
||||||
|
|
|
@ -631,7 +631,7 @@ fn parse_method_attributes(
|
||||||
} else if name.is_ident("init") || name.is_ident("__init__") {
|
} else if name.is_ident("init") || name.is_ident("__init__") {
|
||||||
bail_spanned!(name.span() => "#[init] is disabled since PyO3 0.9.0");
|
bail_spanned!(name.span() => "#[init] is disabled since PyO3 0.9.0");
|
||||||
} else if name.is_ident("call") || name.is_ident("__call__") {
|
} else if name.is_ident("call") || name.is_ident("__call__") {
|
||||||
bail_spanned!(name.span() => "use `fn __call__` instead of `#[call]` attribute since PyO3 0.17.0");
|
bail_spanned!(name.span() => "use `fn __call__` instead of `#[call]` attribute since PyO3 0.15.0");
|
||||||
} else if name.is_ident("classmethod") {
|
} else if name.is_ident("classmethod") {
|
||||||
set_ty!(MethodTypeAttribute::ClassMethod, name);
|
set_ty!(MethodTypeAttribute::ClassMethod, name);
|
||||||
} else if name.is_ident("staticmethod") {
|
} else if name.is_ident("staticmethod") {
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "pyo3-macros"
|
name = "pyo3-macros"
|
||||||
version = "0.17.0"
|
version = "0.17.1"
|
||||||
description = "Proc macros for PyO3 package"
|
description = "Proc macros for PyO3 package"
|
||||||
authors = ["PyO3 Project and Contributors <https://github.com/PyO3>"]
|
authors = ["PyO3 Project and Contributors <https://github.com/PyO3>"]
|
||||||
keywords = ["pyo3", "python", "cpython", "ffi"]
|
keywords = ["pyo3", "python", "cpython", "ffi"]
|
||||||
|
@ -23,4 +23,4 @@ abi3 = ["pyo3-macros-backend/abi3"]
|
||||||
proc-macro2 = { version = "1", default-features = false }
|
proc-macro2 = { version = "1", default-features = false }
|
||||||
quote = "1"
|
quote = "1"
|
||||||
syn = { version = "1.0.56", features = ["full", "extra-traits"] }
|
syn = { version = "1.0.56", features = ["full", "extra-traits"] }
|
||||||
pyo3-macros-backend = { path = "../pyo3-macros-backend", version = "=0.17.0" }
|
pyo3-macros-backend = { path = "../pyo3-macros-backend", version = "=0.17.1" }
|
||||||
|
|
Loading…
Reference in New Issue