Skip to content

Commit

Permalink
v0.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
konstin committed Aug 20, 2018
1 parent 991a8b9 commit 9cadbd1
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 24 deletions.
9 changes: 7 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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/)
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

Expand Down Expand Up @@ -143,7 +147,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

* 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.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
Expand Down
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pyo3"
version = "0.4.0"
version = "0.4.1"
description = "Bindings to Python interpreter"
authors = ["PyO3 Project and Contributors <https://github.com/PyO3>"]
readme = "README.md"
Expand All @@ -19,10 +19,10 @@ appveyor = { repository = "fafhrd91/pyo3" }
codecov = { repository = "PyO3/pyo3", branch = "master", service = "github" }

[dependencies]
libc = "0.2.42"
libc = "0.2.43"
spin = "0.4.9"
num-traits = "0.2.5"
pyo3cls = { path = "pyo3cls", version = "0.4.0" }
pyo3cls = { path = "pyo3cls", version = "=0.4.1" }
mashup = "0.1.5"

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion guide/src/function.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ as first parameter, the function name as second and an instance of `Python`
as third.

```rust
#![feature(specialization, use_extern_macros)]
#![feature(specialization)]

#[macro_use]
extern crate pyo3;
Expand Down
15 changes: 6 additions & 9 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.4.0"
version = "0.4.1"
description = "Code generation for PyO3 package"
authors = ["PyO3 Project and Contributors <https://github.com/PyO3>"]
keywords = ["pyo3", "python", "cpython", "ffi"]
Expand All @@ -11,13 +11,10 @@ categories = ["api-bindings", "development-tools::ffi"]
license = "Apache-2.0"

[dependencies]
log= "0.4.3"
quote= "0.6.4"

[dependencies.proc-macro2]
version = "0.4.9"
features = ["nightly"]
log = "0.4.4"
quote = "0.6.6"
proc-macro2 = "0.4.13"

[dependencies.syn]
version= "0.14.5"
features=["full", "parsing", "printing", "extra-traits"]
version = "0.14.8"
features = ["full", "extra-traits"]
15 changes: 6 additions & 9 deletions pyo3cls/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pyo3cls"
version = "0.4.0"
version = "0.4.1"
description = "Proc macros for PyO3 package"
authors = ["PyO3 Project and Contributors <https://github.com/PyO3>"]
keywords = ["pyo3", "python", "cpython", "ffi"]
Expand All @@ -14,16 +14,13 @@ license = "Apache-2.0"
proc-macro = true

[dependencies]
quote= "0.6.4"
quote= "0.6.6"
proc-macro2 = "0.4.13"

[dependencies.syn]
version= "0.14.5"
features=["full", "parsing", "printing", "extra-traits"]
version= "0.14.8"
features=["full", "extra-traits"]

[dependencies.pyo3-derive-backend]
path = "../pyo3-derive-backend"
version = "0.4.0"

[dependencies.proc-macro2]
version = "0.4.9"
features= ["nightly"]
version = "=0.4.1"

0 comments on commit 9cadbd1

Please sign in to comment.