Skip to content

Commit

Permalink
v0.5.0-alpha.2
Browse files Browse the repository at this point in the history
  • Loading branch information
konstin committed Oct 29, 2018
1 parent 13302ea commit 3b63cc9
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 18 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ dist/
.tox/
.mypy_cache/
.hypothesis/
.eggs/

*.so
*.out
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
* Added an explanation that the GIL can temporarily be released even while holding a GILGuard.
* Lots of clippy errors
* Fix segfault on calling an unknown method on a PyObject
* Work around a [bug](https://github.com/rust-lang/rust/issues/55380) in the rust compiler by kngwyu [#252](https://github.com/PyO3/pyo3/pull/252)

### Removed

Expand Down
14 changes: 7 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pyo3"
version = "0.5.0-alpha.1"
version = "0.5.0-alpha.2"
description = "Bindings to Python interpreter"
authors = ["PyO3 Project and Contributors <https://github.com/PyO3>"]
readme = "README.md"
Expand All @@ -22,18 +22,18 @@ codecov = { repository = "PyO3/pyo3", branch = "master", service = "github" }
[dependencies]
libc = "0.2.43"
spin = "0.4.9"
num-traits = "0.2.5"
pyo3cls = { path = "pyo3cls", version = "=0.5.0-alpha.1" }
mashup = "0.1.7"
num-complex = { version = "0.2", optional = true}
num-traits = "0.2.6"
pyo3cls = { path = "pyo3cls", version = "=0.5.0-alpha.2" }
mashup = "0.1.9"
num-complex = { version = "0.2.1", optional = true }

[dev-dependencies]
assert_approx_eq = "1.0"
assert_approx_eq = "1.0.0"
docmatic = "0.1.2"

[build-dependencies]
regex = "1.0.5"
version_check = "0.1.4"
version_check = "0.1.5"

[features]
default = []
Expand Down
2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
# PyO3

**Note: Pyo3 doesn't compile on 1.31.0 nightly due to https://github.com/rust-lang/rust/issues/55380**

[![Build Status](https://travis-ci.org/PyO3/pyo3.svg?branch=master)](https://travis-ci.org/PyO3/pyo3)
[![Build Status](https://ci.appveyor.com/api/projects/status/github/PyO3/pyo3?branch=master&svg=true)](https://ci.appveyor.com/project/fafhrd91/pyo3)
[![crates.io](http://meritbadge.herokuapp.com/pyo3)](https://crates.io/crates/pyo3)
Expand Down
8 changes: 4 additions & 4 deletions 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.5.0-alpha.1"
version = "0.5.0-alpha.2"
description = "Code generation for PyO3 package"
authors = ["PyO3 Project and Contributors <https://github.com/PyO3>"]
keywords = ["pyo3", "python", "cpython", "ffi"]
Expand All @@ -10,6 +10,6 @@ categories = ["api-bindings", "development-tools::ffi"]
license = "Apache-2.0"

[dependencies]
quote = "0.6.8"
proc-macro2 = "0.4.19"
syn = { version = "0.15.4", features = ["full", "extra-traits"] }
quote = "0.6.9"
proc-macro2 = "0.4.20"
syn = { version = "0.15.15", features = ["full", "extra-traits"] }
10 changes: 5 additions & 5 deletions pyo3cls/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pyo3cls"
version = "0.5.0-alpha.1"
version = "0.5.0-alpha.2"
description = "Proc macros for PyO3 package"
authors = ["PyO3 Project and Contributors <https://github.com/PyO3>"]
keywords = ["pyo3", "python", "cpython", "ffi"]
Expand All @@ -13,7 +13,7 @@ license = "Apache-2.0"
proc-macro = true

[dependencies]
quote= "0.6.8"
proc-macro2 = "0.4.19"
syn = { version = "0.15.4", features = ["full", "extra-traits"] }
pyo3-derive-backend = { path = "../pyo3-derive-backend", version = "=0.5.0-alpha.1" }
quote= "0.6.9"
proc-macro2 = "0.4.20"
syn = { version = "0.15.15", features = ["full", "extra-traits"] }
pyo3-derive-backend = { path = "../pyo3-derive-backend", version = "=0.5.0-alpha.2" }

0 comments on commit 3b63cc9

Please sign in to comment.