Bump to 0.6.0-alpha.1 and update changelog from 0.5.3

This commit is contained in:
konstin 2019-01-04 11:53:46 +01:00
parent 322594128c
commit 0deaee01ad
4 changed files with 13 additions and 6 deletions

View File

@ -21,6 +21,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
* `PyToken` was removed due to unsoundness (See [#94](https://github.com/PyO3/pyo3/issues/94)).
* Removed the unnecessary type parameter from `PyObjectAlloc`
## [0.5.3] - 2019-01-04
### Fixed
* Fix memory leak in ArrayList by kngwyu [#316](https://github.com/PyO3/pyo3/pull/316)
## [0.5.2] - 2018-11-26
### Fixed
@ -213,7 +219,8 @@ Yanked
* Initial release
[Unreleased]: https://github.com/pyo3/pyo3/compare/v0.5.0...HEAD
[Unreleased]: https://github.com/pyo3/pyo3/compare/v0.5.3...HEAD
[0.5.3]: https://github.com/pyo3/pyo3/compare/v0.5.2...v0.5.3
[0.5.2]: https://github.com/pyo3/pyo3/compare/v0.5.0...v0.5.2
[0.5.0]: https://github.com/pyo3/pyo3/compare/v0.4.1...v0.5.0
[0.4.1]: https://github.com/pyo3/pyo3/compare/v0.4.0...v0.4.1

View File

@ -1,6 +1,6 @@
[package]
name = "pyo3"
version = "0.5.0"
version = "0.6.0-alpha.1"
description = "Bindings to Python interpreter"
authors = ["PyO3 Project and Contributors <https://github.com/PyO3>"]
readme = "README.md"
@ -22,7 +22,7 @@ codecov = { repository = "PyO3/pyo3", branch = "master", service = "github" }
libc = "0.2.43"
spin = "0.4.9"
num-traits = "0.2.6"
pyo3cls = { path = "pyo3cls", version = "=0.5.0" }
pyo3cls = { path = "pyo3cls", version = "=0.6.0-alpha.1" }
mashup = "0.1.9"
num-complex = { version = "0.2.1", optional = true }

View File

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

View File

@ -1,6 +1,6 @@
[package]
name = "pyo3cls"
version = "0.5.0"
version = "0.6.0-alpha.1"
description = "Proc macros for PyO3 package"
authors = ["PyO3 Project and Contributors <https://github.com/PyO3>"]
keywords = ["pyo3", "python", "cpython", "ffi"]
@ -16,4 +16,4 @@ proc-macro = true
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" }
pyo3-derive-backend = { path = "../pyo3-derive-backend", version = "=0.6.0-alpha.1" }