This commit is contained in:
konstin 2018-08-20 14:30:52 +02:00
parent 991a8b94d2
commit 9cadbd11de
5 changed files with 23 additions and 24 deletions

View File

@ -4,7 +4,11 @@ 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.4.1] - 2018-08-20
### Fixed
* Fixed compilation on nightly since `use_extern_macros` was stabilized
### Changed ### Changed
@ -143,7 +147,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
* Initial release * Initial release
[0.4.0]: https://github.com/olivierlacan/keep-a-changelog/compare/v0.3.2...v0.4.0 [0.4.1]: https://github.com/pyo3/pyo3/compare/v0.4.0...v0.4.1
[0.4.0]: https://github.com/pyo3/pyo3/compare/v0.3.2...v0.4.0
[0.3.2]: https://github.com/pyo3/pyo3/compare/v0.3.1...v0.3.2 [0.3.2]: https://github.com/pyo3/pyo3/compare/v0.3.1...v0.3.2
[0.3.1]: https://github.com/pyo3/pyo3/compare/v0.3.0...v0.3.1 [0.3.1]: https://github.com/pyo3/pyo3/compare/v0.3.0...v0.3.1
[0.3.0]: https://github.com/pyo3/pyo3/compare/v0.2.7...v0.3.0 [0.3.0]: https://github.com/pyo3/pyo3/compare/v0.2.7...v0.3.0

View File

@ -1,6 +1,6 @@
[package] [package]
name = "pyo3" name = "pyo3"
version = "0.4.0" version = "0.4.1"
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"
@ -19,10 +19,10 @@ appveyor = { repository = "fafhrd91/pyo3" }
codecov = { repository = "PyO3/pyo3", branch = "master", service = "github" } codecov = { repository = "PyO3/pyo3", branch = "master", service = "github" }
[dependencies] [dependencies]
libc = "0.2.42" libc = "0.2.43"
spin = "0.4.9" spin = "0.4.9"
num-traits = "0.2.5" num-traits = "0.2.5"
pyo3cls = { path = "pyo3cls", version = "0.4.0" } pyo3cls = { path = "pyo3cls", version = "=0.4.1" }
mashup = "0.1.5" mashup = "0.1.5"
[dev-dependencies] [dev-dependencies]

View File

@ -34,7 +34,7 @@ as first parameter, the function name as second and an instance of `Python`
as third. as third.
```rust ```rust
#![feature(specialization, use_extern_macros)] #![feature(specialization)]
#[macro_use] #[macro_use]
extern crate pyo3; extern crate pyo3;

View File

@ -1,6 +1,6 @@
[package] [package]
name = "pyo3-derive-backend" name = "pyo3-derive-backend"
version = "0.4.0" version = "0.4.1"
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"]
@ -11,13 +11,10 @@ categories = ["api-bindings", "development-tools::ffi"]
license = "Apache-2.0" license = "Apache-2.0"
[dependencies] [dependencies]
log= "0.4.3" log = "0.4.4"
quote= "0.6.4" quote = "0.6.6"
proc-macro2 = "0.4.13"
[dependencies.proc-macro2]
version = "0.4.9"
features = ["nightly"]
[dependencies.syn] [dependencies.syn]
version= "0.14.5" version = "0.14.8"
features=["full", "parsing", "printing", "extra-traits"] features = ["full", "extra-traits"]

View File

@ -1,6 +1,6 @@
[package] [package]
name = "pyo3cls" name = "pyo3cls"
version = "0.4.0" version = "0.4.1"
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"]
@ -14,16 +14,13 @@ license = "Apache-2.0"
proc-macro = true proc-macro = true
[dependencies] [dependencies]
quote= "0.6.4" quote= "0.6.6"
proc-macro2 = "0.4.13"
[dependencies.syn] [dependencies.syn]
version= "0.14.5" version= "0.14.8"
features=["full", "parsing", "printing", "extra-traits"] features=["full", "extra-traits"]
[dependencies.pyo3-derive-backend] [dependencies.pyo3-derive-backend]
path = "../pyo3-derive-backend" path = "../pyo3-derive-backend"
version = "0.4.0" version = "=0.4.1"
[dependencies.proc-macro2]
version = "0.4.9"
features= ["nightly"]