Skip to content

Commit bf18a05

Browse files
committed
Version 0.5.1
1 parent afcb1f5 commit bf18a05

File tree

5 files changed

+23
-8
lines changed

5 files changed

+23
-8
lines changed

CHANGELOG.md

Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,31 @@
22

33
## [Unreleased]
44

5-
[Unreleased]: https://github.com/dgrunwald/rust-cpython/compare/0.5.0...HEAD
5+
[Unreleased]: https://github.com/dgrunwald/rust-cpython/compare/0.5.1...HEAD
66

7-
## 0.5.0 - 2020-04-08
7+
## 0.5.1 - 2020-09-08
8+
- [ignore trailing comma in plist parsing][220] (PR by [@lausek])
9+
- [make fields of initialization config public and implement Default][219] (PR by [@indygreg])
10+
- [fix macros without $crate:: access][234] (PR by [@markbt])
11+
12+
[@lausek]: https://github.com/lausek
13+
[220]: https://github.com/dgrunwald/rust-cpython/pull/220
14+
[219]: https://github.com/dgrunwald/rust-cpython/pull/219
15+
[234]: https://github.com/dgrunwald/rust-cpython/pull/234
816

17+
## 0.5.0 - 2020-04-08
918
- [properties (attributes with getter/setters defined in Rust][208] (PR by [@markbt])
1019
- [adoption of 2018 edition and general code modernization][204] (PR by [@markbt])
1120
- [reference extraction for slot functions and optional reference extraction][207] (PR by [@markbt])
1221
- [PEP-587 initialization APIs (python3-sys for Python≥3.8)][211] (PR by [@indygreg])
1322
- [more import APIs (python3-sys)][210] (PR by [@indygreg])
1423

24+
[208]: https://github.com/dgrunwald/rust-cpython/pull/208
25+
[204]: https://github.com/dgrunwald/rust-cpython/pull/204
26+
[207]: https://github.com/dgrunwald/rust-cpython/pull/207
27+
[211]: https://github.com/dgrunwald/rust-cpython/pull/211
28+
[210]: https://github.com/dgrunwald/rust-cpython/pull/210
29+
1530
## 0.4.1 - 2020-02-03
1631
- [link-time inconsistency with build config][135] (original PR by [@svevang] adapted as [202])
1732
- [missing `pub` classifier][206] in `PySharedRef` example. (PR by [@Alphare])

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22

33
name = "cpython"
4-
version = "0.5.0"
4+
version = "0.5.1"
55
description = "Bindings to Python"
66
authors = ["Daniel Grunwald <daniel@danielgrunwald.de>"]
77
readme = "README.md"
@@ -41,12 +41,12 @@ paste = "0.1"
4141
[dependencies.python27-sys]
4242
optional = true
4343
path = "python27-sys"
44-
version = "0.5.0"
44+
version = "0.5.1"
4545

4646
[dependencies.python3-sys]
4747
optional = true
4848
path = "python3-sys"
49-
version = "0.5.0"
49+
version = "0.5.1"
5050

5151
[features]
5252
default = ["python3-sys"]

extensions/hello/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "hello"
3-
version = "0.5.0"
3+
version = "0.5.1"
44
authors = ["Daniel Grunwald <daniel@danielgrunwald.de>"]
55
edition = "2018"
66

python27-sys/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "python27-sys"
3-
version = "0.5.0"
3+
version = "0.5.1"
44
description = "FFI Declarations for Python 2.7"
55
readme = "README.md"
66
keywords = [

python3-sys/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "python3-sys"
3-
version = "0.5.0"
3+
version = "0.5.1"
44
description = "FFI Declarations for Python 3"
55
readme = "README.md"
66
keywords = [

0 commit comments

Comments
 (0)