commit
90c3f746d7
10
CHANGELOG.md
10
CHANGELOG.md
|
@ -4,7 +4,9 @@ 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
|
||||
## [Unreleased]
|
||||
|
||||
## [0.5.0] - 2018-11-11
|
||||
|
||||
### Added
|
||||
|
||||
|
@ -31,7 +33,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
|
|||
* Updated to syn 0.15
|
||||
* Splitted `PyTypeObject` into `PyTypeObject` without the create method and `PyTypeCreate` with requires `PyObjectAlloc<Self> + PyTypeInfo + Sized`.
|
||||
* Ran `cargo edition --fix` which prefixed path with `crate::` for rust 2018
|
||||
* Renamed `async` to `pyasync` as async will be a keyword in the 2018 edition.
|
||||
* Renamed `async` to `pyasync` as async will be a keyword in the 2018 edition.
|
||||
* Starting to use `NonNull<*mut PyObject>` for Py and PyObject by ijl [#260](https://github.com/PyO3/pyo3/pull/260)
|
||||
|
||||
### Fixed
|
||||
|
||||
|
@ -39,6 +42,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
|
|||
* 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)
|
||||
* Fixed a segfault with subclassing pyo3 create classes and using `__class__` by kngwyu [#263](https://github.com/PyO3/pyo3/pull/263)
|
||||
|
||||
### Removed
|
||||
|
||||
|
@ -187,6 +191,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
|
|||
|
||||
* Initial release
|
||||
|
||||
[Unreleased]: https://github.com/pyo3/pyo3/compare/v0.5.0...HEAD
|
||||
[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
|
||||
[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
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "pyo3"
|
||||
version = "0.5.0-alpha.3"
|
||||
version = "0.5.0"
|
||||
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-alpha.3" }
|
||||
pyo3cls = { path = "pyo3cls", version = "=0.5.0" }
|
||||
mashup = "0.1.9"
|
||||
num-complex = { version = "0.2.1", optional = true }
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "pyo3-derive-backend"
|
||||
version = "0.5.0-alpha.3"
|
||||
version = "0.5.0"
|
||||
description = "Code generation for PyO3 package"
|
||||
authors = ["PyO3 Project and Contributors <https://github.com/PyO3>"]
|
||||
keywords = ["pyo3", "python", "cpython", "ffi"]
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "pyo3cls"
|
||||
version = "0.5.0-alpha.3"
|
||||
version = "0.5.0"
|
||||
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-alpha.3" }
|
||||
pyo3-derive-backend = { path = "../pyo3-derive-backend", version = "=0.5.0" }
|
||||
|
|
Loading…
Reference in New Issue