Skip to content

Commit 2d23f4c

Browse files
committed
release: 0.14.3
1 parent 9b55593 commit 2d23f4c

File tree

6 files changed

+16
-16
lines changed

6 files changed

+16
-16
lines changed

CHANGELOG.md

+6-6
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](http://keepachangelog.com/en/1.0.0/)
77
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
88

9-
## [Unreleased]
9+
## [0.14.3] - 2021-08-21
1010

1111
### Added
1212

@@ -18,10 +18,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
1818
- Restrict FFI definitions `PyGILState_Check` and `Py_tracefunc` to the unlimited API. [#1787](https://github.com/PyO3/pyo3/pull/1787)
1919
- Add missing `_type` field to `PyStatus` struct definition. [#1791](https://github.com/PyO3/pyo3/pull/1791)
2020
- Reduce lower bound `num-complex` optional dependency to support interop with `rust-numpy` and `ndarray` when building with the MSRV of 1.41 [#1799](https://github.com/PyO3/pyo3/pull/1799)
21-
- Add missing `Py_DECREF` to `Python::run_code` and `PyModule::from_code` which fixes a memory leak when
22-
calling Python from Rust. [#1806](https://github.com/PyO3/pyo3/pull/1806), [#1810](https://github.com/PyO3/pyo3/pull/1810)
23-
- Use crate:: syntax to refer to current crate in pyo3::types::datetime
24-
[#1811](https://github.com/PyO3/pyo3/issues/1811)
21+
- Fix memory leak in `Python::run_code`. [#1806](https://github.com/PyO3/pyo3/pull/1806)
22+
- Fix memory leak in `PyModule::from_code`. [#1810](https://github.com/PyO3/pyo3/pull/1810)
23+
- Remove use of `pyo3::` in `pyo3::types::datetime` which broke builds using `-Z avoid-dev-deps` [#1811](https://github.com/PyO3/pyo3/issues/1811)
2524

2625
## [0.14.2] - 2021-08-09
2726

@@ -897,7 +896,8 @@ Yanked
897896

898897
- Initial release
899898

900-
[unreleased]: https://github.com/pyo3/pyo3/compare/v0.14.1...HEAD
899+
[unreleased]: https://github.com/pyo3/pyo3/compare/v0.14.3...HEAD
900+
[0.14.3]: https://github.com/pyo3/pyo3/compare/v0.14.2...v0.14.3
901901
[0.14.2]: https://github.com/pyo3/pyo3/compare/v0.14.1...v0.14.2
902902
[0.14.1]: https://github.com/pyo3/pyo3/compare/v0.14.0...v0.14.1
903903
[0.14.0]: https://github.com/pyo3/pyo3/compare/v0.13.2...v0.14.0

Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pyo3"
3-
version = "0.14.2"
3+
version = "0.14.3"
44
description = "Bindings to Python interpreter"
55
authors = ["PyO3 Project and Contributors <https://github.com/PyO3>"]
66
readme = "README.md"
@@ -24,7 +24,7 @@ num-bigint = { version = "0.4", optional = true }
2424
num-complex = { version = ">= 0.2, < 0.5", optional = true }
2525
# must stay at 0.1.x for Rust 1.41 compatibility
2626
paste = { version = "0.1.18", optional = true }
27-
pyo3-macros = { path = "pyo3-macros", version = "=0.14.2", optional = true }
27+
pyo3-macros = { path = "pyo3-macros", version = "=0.14.3", optional = true }
2828
unindent = { version = "0.1.4", optional = true }
2929
hashbrown = { version = ">= 0.9, < 0.12", optional = true }
3030
indexmap = { version = ">= 1.6, < 1.8", optional = true }
@@ -42,7 +42,7 @@ pyo3 = { path = ".", default-features = false, features = ["macros", "auto-initi
4242
serde_json = "1.0.61"
4343

4444
[build-dependencies]
45-
pyo3-build-config = { path = "pyo3-build-config", version = "0.14.2" }
45+
pyo3-build-config = { path = "pyo3-build-config", version = "0.14.3" }
4646

4747
[features]
4848
default = ["macros"]

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ name = "string_sum"
4646
crate-type = ["cdylib"]
4747

4848
[dependencies.pyo3]
49-
version = "0.14.2"
49+
version = "0.14.3"
5050
features = ["extension-module"]
5151
```
5252

@@ -108,7 +108,7 @@ Start a new project with `cargo new` and add `pyo3` to the `Cargo.toml` like th
108108

109109
```toml
110110
[dependencies.pyo3]
111-
version = "0.14.2"
111+
version = "0.14.3"
112112
features = ["auto-initialize"]
113113
```
114114

pyo3-build-config/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pyo3-build-config"
3-
version = "0.14.2"
3+
version = "0.14.3"
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-macros-backend/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pyo3-macros-backend"
3-
version = "0.14.2"
3+
version = "0.14.3"
44
description = "Code generation for PyO3 package"
55
authors = ["PyO3 Project and Contributors <https://github.com/PyO3>"]
66
keywords = ["pyo3", "python", "cpython", "ffi"]
@@ -16,7 +16,7 @@ edition = "2018"
1616
[dependencies]
1717
quote = { version = "1", default-features = false }
1818
proc-macro2 = { version = "1", default-features = false }
19-
pyo3-build-config = { path = "../pyo3-build-config", version = "0.14.2" }
19+
pyo3-build-config = { path = "../pyo3-build-config", version = "0.14.3" }
2020

2121
[dependencies.syn]
2222
version = "1"

pyo3-macros/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pyo3-macros"
3-
version = "0.14.2"
3+
version = "0.14.3"
44
description = "Proc macros for PyO3 package"
55
authors = ["PyO3 Project and Contributors <https://github.com/PyO3>"]
66
keywords = ["pyo3", "python", "cpython", "ffi"]
@@ -16,4 +16,4 @@ proc-macro = true
1616
[dependencies]
1717
quote = "1"
1818
syn = { version = "1", features = ["full", "extra-traits"] }
19-
pyo3-macros-backend = { path = "../pyo3-macros-backend", version = "=0.14.2" }
19+
pyo3-macros-backend = { path = "../pyo3-macros-backend", version = "=0.14.3" }

0 commit comments

Comments
 (0)