Bump version to 0.9.2

This commit is contained in:
kngwyu 2020-04-09 13:00:13 +09:00
parent e0c1f82b6c
commit c83d88ba8d
10 changed files with 16 additions and 13 deletions

View File

@ -5,11 +5,14 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
## Unreleased ## [0.9.2]
### Added ### Added
* `FromPyObject` implementations for `HashSet` and `BTreeSet`. [#842](https://github.com/PyO3/pyo3/pull/842) * `FromPyObject` implementations for `HashSet` and `BTreeSet`. [#842](https://github.com/PyO3/pyo3/pull/842)
### Fixed
* Correctly detect 32bit architecture. [#830](https://github.com/PyO3/pyo3/pull/830)
## [0.9.1] ## [0.9.1]
### Fixed ### Fixed

View File

@ -1,6 +1,6 @@
[package] [package]
name = "pyo3" name = "pyo3"
version = "0.9.1" version = "0.9.2"
description = "Bindings to Python interpreter" description = "Bindings to Python interpreter"
authors = ["PyO3 Project and Contributors <https://github.com/PyO3>"] authors = ["PyO3 Project and Contributors <https://github.com/PyO3>"]
readme = "README.md" readme = "README.md"
@ -27,7 +27,7 @@ num-complex = { version = "0.2", optional = true }
num-traits = "0.2.8" num-traits = "0.2.8"
parking_lot = { version = "0.10", features = ["nightly"] } parking_lot = { version = "0.10", features = ["nightly"] }
paste = "0.1.6" paste = "0.1.6"
pyo3cls = { path = "pyo3cls", version = "=0.9.1" } pyo3cls = { path = "pyo3cls", version = "=0.9.2" }
unindent = "0.1.4" unindent = "0.1.4"
[dev-dependencies] [dev-dependencies]
@ -36,7 +36,7 @@ trybuild = "1.0.23"
[build-dependencies] [build-dependencies]
regex = "1" regex = "1"
version_check = "0.9.1" version_check = "0.9.2"
serde = { version = "1.0", features = ["derive"] } serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0" serde_json = "1.0"

View File

@ -50,7 +50,7 @@ name = "string_sum"
crate-type = ["cdylib"] crate-type = ["cdylib"]
[dependencies.pyo3] [dependencies.pyo3]
version = "0.9.1" version = "0.9.2"
features = ["extension-module"] features = ["extension-module"]
``` ```
@ -95,7 +95,7 @@ Add `pyo3` to your `Cargo.toml` like this:
```toml ```toml
[dependencies] [dependencies]
pyo3 = "0.9.1" pyo3 = "0.9.2"
``` ```
Example program displaying the value of `sys.version` and the current user name: Example program displaying the value of `sys.version` and the current user name:

View File

@ -44,7 +44,7 @@ name = "string_sum"
crate-type = ["cdylib"] crate-type = ["cdylib"]
[dependencies.pyo3] [dependencies.pyo3]
version = "0.9.1" version = "0.9.2"
features = ["extension-module"] features = ["extension-module"]
``` ```
@ -90,7 +90,7 @@ use it to run Python code, add `pyo3` to your `Cargo.toml` like this:
```toml ```toml
[dependencies] [dependencies]
pyo3 = "0.9.1" pyo3 = "0.9.2"
``` ```
Example program displaying the value of `sys.version` and the current user name: Example program displaying the value of `sys.version` and the current user name:

View File

@ -1,6 +1,6 @@
[package] [package]
name = "pyo3-derive-backend" name = "pyo3-derive-backend"
version = "0.9.1" version = "0.9.2"
description = "Code generation for PyO3 package" description = "Code generation for PyO3 package"
authors = ["PyO3 Project and Contributors <https://github.com/PyO3>"] authors = ["PyO3 Project and Contributors <https://github.com/PyO3>"]
keywords = ["pyo3", "python", "cpython", "ffi"] keywords = ["pyo3", "python", "cpython", "ffi"]

View File

@ -1,6 +1,6 @@
[package] [package]
name = "pyo3cls" name = "pyo3cls"
version = "0.9.1" version = "0.9.2"
description = "Proc macros for PyO3 package" description = "Proc macros for PyO3 package"
authors = ["PyO3 Project and Contributors <https://github.com/PyO3>"] authors = ["PyO3 Project and Contributors <https://github.com/PyO3>"]
keywords = ["pyo3", "python", "cpython", "ffi"] keywords = ["pyo3", "python", "cpython", "ffi"]
@ -16,4 +16,4 @@ proc-macro = true
[dependencies] [dependencies]
quote = "1" quote = "1"
syn = { version = "1", features = ["full", "extra-traits"] } syn = { version = "1", features = ["full", "extra-traits"] }
pyo3-derive-backend = { path = "../pyo3-derive-backend", version = "=0.9.1" } pyo3-derive-backend = { path = "../pyo3-derive-backend", version = "=0.9.2" }

View File

@ -52,7 +52,7 @@
//! crate-type = ["cdylib"] //! crate-type = ["cdylib"]
//! //!
//! [dependencies.pyo3] //! [dependencies.pyo3]
//! version = "0.9.1" //! version = "0.9.2"
//! features = ["extension-module"] //! features = ["extension-module"]
//! ``` //! ```
//! //!
@ -109,7 +109,7 @@
//! //!
//! ```toml //! ```toml
//! [dependencies] //! [dependencies]
//! pyo3 = "0.9.1" //! pyo3 = "0.9.2"
//! ``` //! ```
//! //!
//! Example program displaying the value of `sys.version`: //! Example program displaying the value of `sys.version`:

0
tests/test_arithmetics.rs Executable file → Normal file
View File

0
tests/test_datetime.rs Executable file → Normal file
View File

0
tests/test_dunder.rs Executable file → Normal file
View File