Skip to content

Commit

Permalink
Merge pull request #690 from PyO3/v0.8.4
Browse files Browse the repository at this point in the history
Bump version to 0.8.4
  • Loading branch information
kngwyu committed Dec 14, 2019
2 parents 352707c + d8a4ecb commit 4aa2ff5
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 11 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## Unreleased

## [0.8.4]

### Added

* Support for `#[text_signature]` attribute. [#675](https://github.com/PyO3/pyo3/pull/675)
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pyo3"
version = "0.8.3"
version = "0.8.4"
description = "Bindings to Python interpreter"
authors = ["PyO3 Project and Contributors <https://github.com/PyO3>"]
readme = "README.md"
Expand All @@ -22,7 +22,7 @@ appveyor = { repository = "fafhrd91/pyo3" }
libc = "0.2.62"
spin = "0.5.1"
num-traits = "0.2.8"
pyo3cls = { path = "pyo3cls", version = "=0.8.3" }
pyo3cls = { path = "pyo3cls", version = "=0.8.4" }
num-complex = { version = ">= 0.2", optional = true }
num-bigint = { version = ">= 0.2", optional = true }
inventory = "0.1.4"
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ name = "string_sum"
crate-type = ["cdylib"]

[dependencies.pyo3]
version = "0.8.3"
version = "0.8.4"
features = ["extension-module"]
```

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

```toml
[dependencies]
pyo3 = "0.8.3"
pyo3 = "0.8.4"
```

Example program displaying the value of `sys.version` and the current user name:
Expand Down
4 changes: 2 additions & 2 deletions guide/src/get_started.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ name = "string_sum"
crate-type = ["cdylib"]

[dependencies.pyo3]
version = "0.8.3"
version = "0.8.4"
features = ["extension-module"]
```

Expand Down Expand Up @@ -89,7 +89,7 @@ Add `pyo3` to your `Cargo.toml` like this:

```toml
[dependencies]
pyo3 = "0.8.3"
pyo3 = "0.8.4"
```

Example program displaying the value of `sys.version` and the current user name:
Expand Down
2 changes: 1 addition & 1 deletion pyo3-derive-backend/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pyo3-derive-backend"
version = "0.8.3"
version = "0.8.4"
description = "Code generation for PyO3 package"
authors = ["PyO3 Project and Contributors <https://github.com/PyO3>"]
keywords = ["pyo3", "python", "cpython", "ffi"]
Expand Down
4 changes: 2 additions & 2 deletions pyo3cls/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pyo3cls"
version = "0.8.3"
version = "0.8.4"
description = "Proc macros for PyO3 package"
authors = ["PyO3 Project and Contributors <https://github.com/PyO3>"]
keywords = ["pyo3", "python", "cpython", "ffi"]
Expand All @@ -17,7 +17,7 @@ proc-macro = true
quote = "1"
proc-macro2 = "1"
syn = { version = "1", features = ["full", "extra-traits"] }
pyo3-derive-backend = { path = "../pyo3-derive-backend", version = "=0.8.3" }
pyo3-derive-backend = { path = "../pyo3-derive-backend", version = "=0.8.4" }

[features]
unsound-subclass = ["pyo3-derive-backend/unsound-subclass"]
4 changes: 2 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
//! crate-type = ["cdylib"]
//!
//! [dependencies.pyo3]
//! version = "0.8.3"
//! version = "0.8.4"
//! features = ["extension-module"]
//! ```
//!
Expand Down Expand Up @@ -93,7 +93,7 @@
//!
//! ```toml
//! [dependencies]
//! pyo3 = "0.8.3"
//! pyo3 = "0.8.4"
//! ```
//!
//! Example program displaying the value of `sys.version`:
Expand Down

0 comments on commit 4aa2ff5

Please sign in to comment.