Skip to content

Commit 1c1d3c4

Browse files
authored
Merge pull request #829 from PyO3/release-0.9.1
Bump version to 0.9.1
2 parents 3b8af93 + 4759358 commit 1c1d3c4

File tree

8 files changed

+16
-13
lines changed

8 files changed

+16
-13
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
77

88
## Unreleased
99

10+
## [0.9.1]
11+
1012
### Fixed
1113

14+
* Error messages for `#[pyclass]`. [#826](https://github.com/PyO3/pyo3/pull/826)
1215
* `FromPyObject` implementation for `PySequence`. [#827](https://github.com/PyO3/pyo3/pull/827)
1316

1417
## [0.9.0]

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"
3-
version = "0.9.0"
3+
version = "0.9.1"
44
description = "Bindings to Python interpreter"
55
authors = ["PyO3 Project and Contributors <https://github.com/PyO3>"]
66
readme = "README.md"
@@ -27,7 +27,7 @@ num-complex = { version = "0.2", optional = true }
2727
num-traits = "0.2.8"
2828
parking_lot = { version = "0.10", features = ["nightly"] }
2929
paste = "0.1.6"
30-
pyo3cls = { path = "pyo3cls", version = "=0.9.0" }
30+
pyo3cls = { path = "pyo3cls", version = "=0.9.1" }
3131
unindent = "0.1.4"
3232

3333
[dev-dependencies]

README.md

Lines changed: 2 additions & 2 deletions
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.9.0"
53+
version = "0.9.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.9.0"
98+
pyo3 = "0.9.1"
9999
```
100100

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

guide/src/get_started.md

Lines changed: 2 additions & 2 deletions
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.9.0"
47+
version = "0.9.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.9.0"
93+
pyo3 = "0.9.1"
9494
```
9595

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

pyo3-derive-backend/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-derive-backend"
3-
version = "0.9.0"
3+
version = "0.9.1"
44
description = "Code generation for PyO3 package"
55
authors = ["PyO3 Project and Contributors <https://github.com/PyO3>"]
66
keywords = ["pyo3", "python", "cpython", "ffi"]

pyo3-derive-backend/src/method.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -323,7 +323,7 @@ fn parse_method_attributes(
323323
} else if name.is_ident("init") || name.is_ident("__init__") {
324324
return Err(syn::Error::new_spanned(
325325
name,
326-
"#[init] is disabled from PyO3 0.9.0",
326+
"#[init] is disabled since PyO3 0.9.0",
327327
));
328328
} else if name.is_ident("call") || name.is_ident("__call__") {
329329
res = Some(FnType::FnCall)
@@ -363,7 +363,7 @@ fn parse_method_attributes(
363363
} else if path.is_ident("init") {
364364
return Err(syn::Error::new_spanned(
365365
path,
366-
"#[init] is disabled from PyO3 0.9.0",
366+
"#[init] is disabled since PyO3 0.9.0",
367367
));
368368
} else if path.is_ident("call") {
369369
res = Some(FnType::FnCall)

pyo3cls/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pyo3cls"
3-
version = "0.9.0"
3+
version = "0.9.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.9.0" }
19+
pyo3-derive-backend = { path = "../pyo3-derive-backend", version = "=0.9.1" }

src/lib.rs

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

0 commit comments

Comments
 (0)