Skip to content

Commit 1cecad8

Browse files
committed
Release 0.12.2
1 parent 576c6b1 commit 1cecad8

File tree

6 files changed

+15
-15
lines changed

6 files changed

+15
-15
lines changed

CHANGELOG.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,15 @@ PyO3 versions, please see the [migration guide](https://pyo3.rs/master/migration
55
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
66
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
77

8-
## [Unreleased]
8+
## [0.12.2] - 2020-10-12
99
### Added
1010
- Add support for keyword-only arguments without default values in `#[pyfunction]`. [#1209](https://github.com/PyO3/pyo3/pull/1209)
11-
- Add a wrapper for `PyErr_CheckSignals()` as `Python::check_signals()`. [#1214](https://github.com/PyO3/pyo3/pull/1214)
12-
13-
### Changed
14-
- Fields of `PyMethodDef`, `PyGetterDef`, `PySetterDef`, and `PyClassAttributeDef` are now private. [#1169](https://github.com/PyO3/pyo3/pull/1169)
11+
- Add `Python::check_signals()` as a safe a wrapper for `PyErr_CheckSignals()`. [#1214](https://github.com/PyO3/pyo3/pull/1214)
1512

1613
### Fixed
1714
- Fix invalid document for protocol methods. [#1169](https://github.com/PyO3/pyo3/pull/1169)
15+
- Hide docs of PyO3 private implementation details in `pyo3::class::methods`. [#1169](https://github.com/PyO3/pyo3/pull/1169)
16+
- Fix unnecessary rebuild on PATH changes when the python interpreter is provided by PYO3_PYTHON. [#1231](https://github.com/PyO3/pyo3/pull/1231)
1817

1918
## [0.12.1] - 2020-09-16
2019
### Fixed
@@ -512,7 +511,8 @@ Yanked
512511
### Added
513512
- Initial release
514513

515-
[Unreleased]: https://github.com/pyo3/pyo3/compare/v0.12.1...HEAD
514+
[Unreleased]: https://github.com/pyo3/pyo3/compare/v0.12.2...HEAD
515+
[0.12.2]: https://github.com/pyo3/pyo3/compare/v0.12.1...v0.12.2
516516
[0.12.1]: https://github.com/pyo3/pyo3/compare/v0.12.0...v0.12.1
517517
[0.12.0]: https://github.com/pyo3/pyo3/compare/v0.11.1...v0.12.0
518518
[0.11.1]: https://github.com/pyo3/pyo3/compare/v0.11.0...v0.11.1

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pyo3"
3-
version = "0.12.1"
3+
version = "0.12.2"
44
description = "Bindings to Python interpreter"
55
authors = ["PyO3 Project and Contributors <https://github.com/PyO3>"]
66
readme = "README.md"
@@ -23,7 +23,7 @@ parking_lot = "0.11.0"
2323
num-bigint = { version = "0.3", optional = true }
2424
num-complex = { version = "0.3", optional = true }
2525
paste = { version = "1.0.1", optional = true }
26-
pyo3cls = { path = "pyo3cls", version = "=0.12.1", optional = true }
26+
pyo3cls = { path = "pyo3cls", version = "=0.12.2", optional = true }
2727
unindent = { version = "0.1.4", optional = true }
2828
hashbrown = { version = "0.9", optional = true }
2929

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ name = "string_sum"
4848
crate-type = ["cdylib"]
4949

5050
[dependencies.pyo3]
51-
version = "0.12.1"
51+
version = "0.12.2"
5252
features = ["extension-module"]
5353
```
5454

@@ -99,7 +99,7 @@ use it to run Python code, add `pyo3` to your `Cargo.toml` like this:
9999

100100
```toml
101101
[dependencies]
102-
pyo3 = "0.12.1"
102+
pyo3 = "0.12.2"
103103
```
104104

105105
Example program displaying the value of `sys.version` and the current user name:

pyo3-derive-backend/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pyo3-derive-backend"
3-
version = "0.12.1"
3+
version = "0.12.2"
44
description = "Code generation for PyO3 package"
55
authors = ["PyO3 Project and Contributors <https://github.com/PyO3>"]
66
keywords = ["pyo3", "python", "cpython", "ffi"]

pyo3cls/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pyo3cls"
3-
version = "0.12.1"
3+
version = "0.12.2"
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-derive-backend = { path = "../pyo3-derive-backend", version = "=0.12.1" }
19+
pyo3-derive-backend = { path = "../pyo3-derive-backend", version = "=0.12.2" }

src/lib.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
//! crate-type = ["cdylib"]
5353
//!
5454
//! [dependencies.pyo3]
55-
//! version = "0.12.1"
55+
//! version = "0.12.2"
5656
//! features = ["extension-module"]
5757
//! ```
5858
//!
@@ -109,7 +109,7 @@
109109
//!
110110
//! ```toml
111111
//! [dependencies]
112-
//! pyo3 = "0.12.1"
112+
//! pyo3 = "0.12.2"
113113
//! ```
114114
//!
115115
//! Example program displaying the value of `sys.version`:

0 commit comments

Comments
 (0)