Skip to content

Commit 4fdebfc

Browse files
committed
release: 0.16.6
1 parent dde98a0 commit 4fdebfc

File tree

12 files changed

+20
-19
lines changed

12 files changed

+20
-19
lines changed

CHANGELOG.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ PyO3 versions, please see the [migration guide](https://pyo3.rs/latest/migration
66
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
77
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
88

9-
## [Unreleased]
9+
## [0.16.6] - 2022-08-23
1010

1111
### Changed
1212
- Fix soundness issues with `PyCapsule` type with select workarounds. Users are encourage to upgrade to PyO3 0.17 at their earliest convenience which contains API breakages which fix the issues in a long-term fashion. [#2522](https://github.com/PyO3/pyo3/pull/2522)
@@ -1174,7 +1174,8 @@ Yanked
11741174

11751175
- Initial release
11761176

1177-
[Unreleased]: https://github.com/pyo3/pyo3/compare/v0.16.5...HEAD
1177+
[Unreleased]: https://github.com/pyo3/pyo3/compare/v0.16.6...HEAD
1178+
[0.16.6]: https://github.com/pyo3/pyo3/compare/v0.16.5...v0.16.6
11781179
[0.16.5]: https://github.com/pyo3/pyo3/compare/v0.16.4...v0.16.5
11791180
[0.16.3]: https://github.com/pyo3/pyo3/compare/v0.16.3...v0.16.4
11801181
[0.16.3]: https://github.com/pyo3/pyo3/compare/v0.16.2...v0.16.3

Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pyo3"
3-
version = "0.16.5"
3+
version = "0.16.6"
44
description = "Bindings to Python interpreter"
55
authors = ["PyO3 Project and Contributors <https://github.com/PyO3>"]
66
readme = "README.md"
@@ -19,10 +19,10 @@ libc = "0.2.62"
1919
parking_lot = ">= 0.11, < 0.13"
2020

2121
# ffi bindings to the python interpreter, split into a seperate crate so they can be used independently
22-
pyo3-ffi = { path = "pyo3-ffi", version = "=0.16.5" }
22+
pyo3-ffi = { path = "pyo3-ffi", version = "=0.16.6" }
2323

2424
# support crates for macros feature
25-
pyo3-macros = { path = "pyo3-macros", version = "=0.16.5", optional = true }
25+
pyo3-macros = { path = "pyo3-macros", version = "=0.16.6", optional = true }
2626
indoc = { version = "1.0.3", optional = true }
2727
unindent = { version = "0.1.4", optional = true }
2828

@@ -51,7 +51,7 @@ serde_json = "1.0.61"
5151
widestring = "0.5.1"
5252

5353
[build-dependencies]
54-
pyo3-build-config = { path = "pyo3-build-config", version = "0.16.5", features = ["resolve-config"] }
54+
pyo3-build-config = { path = "pyo3-build-config", version = "0.16.6", features = ["resolve-config"] }
5555

5656
[features]
5757
default = ["macros", "pyproto"]

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ name = "string_sum"
6868
crate-type = ["cdylib"]
6969

7070
[dependencies]
71-
pyo3 = { version = "0.16.5", features = ["extension-module"] }
71+
pyo3 = { version = "0.16.6", features = ["extension-module"] }
7272
```
7373

7474
**`src/lib.rs`**
@@ -132,7 +132,7 @@ Start a new project with `cargo new` and add `pyo3` to the `Cargo.toml` like th
132132

133133
```toml
134134
[dependencies.pyo3]
135-
version = "0.16.5"
135+
version = "0.16.6"
136136
features = ["auto-initialize"]
137137
```
138138

examples/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ publish = false
55
edition = "2018"
66

77
[dev-dependencies]
8-
pyo3 = { version = "0.16.5", path = "..", features = ["auto-initialize", "extension-module"] }
8+
pyo3 = { version = "0.16.6", path = "..", features = ["auto-initialize", "extension-module"] }
99

1010
[[example]]
1111
name = "decorator"

examples/decorator/.template/pre-script.rhai

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
variable::set("PYO3_VERSION", "0.16.5");
1+
variable::set("PYO3_VERSION", "0.16.6");
22
file::rename(".template/Cargo.toml", "Cargo.toml");
33
file::rename(".template/pyproject.toml", "pyproject.toml");
44
file::rename(".template/tox.ini", "tox.ini");

examples/maturin-starter/.template/pre-script.rhai

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
variable::set("PYO3_VERSION", "0.16.5");
1+
variable::set("PYO3_VERSION", "0.16.6");
22
file::rename(".template/Cargo.toml", "Cargo.toml");
33
file::rename(".template/pyproject.toml", "pyproject.toml");
44
file::rename(".template/tox.ini", "tox.ini");

examples/setuptools-rust-starter/.template/pre-script.rhai

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
variable::set("PYO3_VERSION", "0.16.5");
1+
variable::set("PYO3_VERSION", "0.16.6");
22
file::rename(".template/Cargo.toml", "Cargo.toml");
33
file::rename(".template/setup.cfg", "setup.cfg");
44
file::rename(".template/tox.ini", "tox.ini");
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
variable::set("PYO3_VERSION", "0.16.5");
1+
variable::set("PYO3_VERSION", "0.16.6");
22
file::rename(".template/Cargo.toml", "Cargo.toml");
33
file::rename(".template/tox.ini", "tox.ini");
44
file::delete(".template");

pyo3-build-config/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pyo3-build-config"
3-
version = "0.16.5"
3+
version = "0.16.6"
44
description = "Build configuration for the PyO3 ecosystem"
55
authors = ["PyO3 Project and Contributors <https://github.com/PyO3>"]
66
keywords = ["pyo3", "python", "cpython", "ffi"]

pyo3-ffi/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pyo3-ffi"
3-
version = "0.16.5"
3+
version = "0.16.6"
44
description = "Python-API bindings for the PyO3 ecosystem"
55
authors = ["PyO3 Project and Contributors <https://github.com/PyO3>"]
66
keywords = ["pyo3", "python", "cpython", "ffi"]
@@ -39,4 +39,4 @@ generate-abi3-import-lib = ["generate-import-lib"]
3939

4040

4141
[build-dependencies]
42-
pyo3-build-config = { path = "../pyo3-build-config", version = "0.16.5", features = ["resolve-config"] }
42+
pyo3-build-config = { path = "../pyo3-build-config", version = "0.16.6", features = ["resolve-config"] }

0 commit comments

Comments
 (0)