Skip to content

Commit 45cb26d

Browse files
authored
Merge pull request #926 from PyO3/release-0.10
Bump version to 0.10.1
2 parents bc3fac9 + 837261c commit 45cb26d

File tree

7 files changed

+15
-12
lines changed

7 files changed

+15
-12
lines changed

CHANGELOG.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
55
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
66

77
## [Unreleased]
8+
9+
## [0.10.0] - 2020-05-14
810
### Fixed
911
- Fix deadlock in `Python::acquire_gil()` after dropping a `PyObject` or `Py<T>`. [#924](https://github.com/PyO3/pyo3/pull/924)
1012

@@ -391,7 +393,8 @@ Yanked
391393
### Added
392394
- Initial release
393395

394-
[Unreleased]: https://github.com/pyo3/pyo3/compare/v0.10.0...HEAD
396+
[Unreleased]: https://github.com/pyo3/pyo3/compare/v0.10.1...HEAD
397+
[0.10.1]: https://github.com/pyo3/pyo3/compare/v0.10.0...v0.10.1
395398
[0.10.0]: https://github.com/pyo3/pyo3/compare/v0.9.2...v0.10.0
396399
[0.9.2]: https://github.com/pyo3/pyo3/compare/v0.9.1...v0.9.2
397400
[0.9.1]: https://github.com/pyo3/pyo3/compare/v0.9.0...v0.9.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.10.0"
3+
version = "0.10.1"
44
description = "Bindings to Python interpreter"
55
authors = ["PyO3 Project and Contributors <https://github.com/PyO3>"]
66
readme = "README.md"
@@ -26,7 +26,7 @@ parking_lot = "0.10.2"
2626
num-bigint = { version = "0.2", optional = true }
2727
num-complex = { version = "0.2", optional = true }
2828
paste = { version = "0.1.6", optional = true }
29-
pyo3cls = { path = "pyo3cls", version = "=0.10.0", optional = true }
29+
pyo3cls = { path = "pyo3cls", version = "=0.10.1", optional = true }
3030
unindent = { version = "0.1.4", optional = true }
3131

3232
[dev-dependencies]

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ name = "string_sum"
5050
crate-type = ["cdylib"]
5151

5252
[dependencies.pyo3]
53-
version = "0.10.0"
53+
version = "0.10.1"
5454
features = ["extension-module"]
5555
```
5656

@@ -95,7 +95,7 @@ Add `pyo3` to your `Cargo.toml` like this:
9595

9696
```toml
9797
[dependencies]
98-
pyo3 = "0.10.0"
98+
pyo3 = "0.10.1"
9999
```
100100

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

guide/src/get_started.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ name = "string_sum"
4444
crate-type = ["cdylib"]
4545

4646
[dependencies.pyo3]
47-
version = "0.10.0"
47+
version = "0.10.1"
4848
features = ["extension-module"]
4949
```
5050

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

9191
```toml
9292
[dependencies]
93-
pyo3 = "0.10.0"
93+
pyo3 = "0.10.1"
9494
```
9595

9696
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.10.0"
3+
version = "0.10.1"
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.10.0"
3+
version = "0.10.1"
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.10.0" }
19+
pyo3-derive-backend = { path = "../pyo3-derive-backend", version = "=0.10.1" }

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

0 commit comments

Comments
 (0)