From 3b63cc91786183882db83706d4305d6cdb9217e9 Mon Sep 17 00:00:00 2001 From: konstin Date: Mon, 29 Oct 2018 17:36:06 +0100 Subject: [PATCH] v0.5.0-alpha.2 --- .gitignore | 1 + CHANGELOG.md | 1 + Cargo.toml | 14 +++++++------- README.md | 2 -- pyo3-derive-backend/Cargo.toml | 8 ++++---- pyo3cls/Cargo.toml | 10 +++++----- 6 files changed, 18 insertions(+), 18 deletions(-) diff --git a/.gitignore b/.gitignore index 87452b5d..2d1018bf 100644 --- a/.gitignore +++ b/.gitignore @@ -11,6 +11,7 @@ dist/ .tox/ .mypy_cache/ .hypothesis/ +.eggs/ *.so *.out diff --git a/CHANGELOG.md b/CHANGELOG.md index 8e846f2a..8c0ab0e4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/Cargo.toml b/Cargo.toml index de028506..a4829197 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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 "] readme = "README.md" @@ -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 = [] diff --git a/README.md b/README.md index 394bd1ec..6663fed7 100644 --- a/README.md +++ b/README.md @@ -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) diff --git a/pyo3-derive-backend/Cargo.toml b/pyo3-derive-backend/Cargo.toml index d92984bb..778edc17 100644 --- a/pyo3-derive-backend/Cargo.toml +++ b/pyo3-derive-backend/Cargo.toml @@ -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 "] keywords = ["pyo3", "python", "cpython", "ffi"] @@ -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"] } diff --git a/pyo3cls/Cargo.toml b/pyo3cls/Cargo.toml index 165ae84a..2711c602 100644 --- a/pyo3cls/Cargo.toml +++ b/pyo3cls/Cargo.toml @@ -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 "] keywords = ["pyo3", "python", "cpython", "ffi"] @@ -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" }