Skip to content

Commit 38af32e

Browse files
committed
Release 0.12.3
1 parent fc7cb2e commit 38af32e

File tree

7 files changed

+14
-11
lines changed

7 files changed

+14
-11
lines changed

CHANGELOG.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ 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.3] - 2020-10-12
99
### Fixed
1010
- Fix support for Rust versions 1.39 to 1.44, broken by an incorrect internal update to paste 1.0 which was done in PyO3 0.12.2. [#1234](https://github.com/PyO3/pyo3/pull/1234)
1111

@@ -515,7 +515,8 @@ Yanked
515515
### Added
516516
- Initial release
517517

518-
[Unreleased]: https://github.com/pyo3/pyo3/compare/v0.12.2...HEAD
518+
[Unreleased]: https://github.com/pyo3/pyo3/compare/v0.12.3...HEAD
519+
[0.12.3]: https://github.com/pyo3/pyo3/compare/v0.12.2...v0.12.3
519520
[0.12.2]: https://github.com/pyo3/pyo3/compare/v0.12.1...v0.12.2
520521
[0.12.1]: https://github.com/pyo3/pyo3/compare/v0.12.0...v0.12.1
521522
[0.12.0]: https://github.com/pyo3/pyo3/compare/v0.11.1...v0.12.0

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.2"
3+
version = "0.12.3"
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 = "0.1.6", optional = true }
26-
pyo3cls = { path = "pyo3cls", version = "=0.12.2", optional = true }
26+
pyo3cls = { path = "pyo3cls", version = "=0.12.3", optional = true }
2727
unindent = { version = "0.1.4", optional = true }
2828
hashbrown = { version = "0.9", optional = true }
2929

Makefile

+2
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,7 @@ lint: fmt clippy
2020

2121
publish: test
2222
cargo publish --manifest-path pyo3-derive-backend/Cargo.toml
23+
sleep 10 # wait for crates.io to update
2324
cargo publish --manifest-path pyo3cls/Cargo.toml
25+
sleep 10 # wait for crates.io to update
2426
cargo publish

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.2"
51+
version = "0.12.3"
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.2"
102+
pyo3 = "0.12.3"
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.2"
3+
version = "0.12.3"
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.2"
3+
version = "0.12.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-derive-backend = { path = "../pyo3-derive-backend", version = "=0.12.2" }
19+
pyo3-derive-backend = { path = "../pyo3-derive-backend", version = "=0.12.3" }

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.2"
55+
//! version = "0.12.3"
5656
//! features = ["extension-module"]
5757
//! ```
5858
//!
@@ -109,7 +109,7 @@
109109
//!
110110
//! ```toml
111111
//! [dependencies]
112-
//! pyo3 = "0.12.2"
112+
//! pyo3 = "0.12.3"
113113
//! ```
114114
//!
115115
//! Example program displaying the value of `sys.version`:

0 commit comments

Comments
 (0)