Skip to content

Commit 633dafc

Browse files
committed
Version 0.5.2
1 parent 7f0d976 commit 633dafc

File tree

5 files changed

+18
-7
lines changed

5 files changed

+18
-7
lines changed

CHANGELOG.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,18 @@
22

33
## [Unreleased]
44

5-
[Unreleased]: https://github.com/dgrunwald/rust-cpython/compare/0.5.1...HEAD
5+
[Unreleased]: https://github.com/dgrunwald/rust-cpython/compare/0.5.2...HEAD
6+
7+
## 0.5.2 - 2020-12-16
8+
- [add a way to disable converting `PyString` to unicode on Python 2][240] (PR by [@quark-zju])
9+
- [initial serde support][241] (PR by [@quark-zju])
10+
- [avoid abort if the Python function never returns due to thread exit][244] (PR by [@quark-zju])
11+
- Added [Python 3.9][243] support.
12+
13+
[240]: https://github.com/dgrunwald/rust-cpython/pull/240
14+
[241]: https://github.com/dgrunwald/rust-cpython/pull/241
15+
[243]: https://github.com/dgrunwald/rust-cpython/pull/243
16+
[244]: https://github.com/dgrunwald/rust-cpython/pull/244
617

718
## 0.5.1 - 2020-09-08
819
- [ignore trailing comma in plist parsing][220] (PR by [@lausek])

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.1"
4+
version = "0.5.2"
55
description = "Bindings to Python"
66
authors = ["Daniel Grunwald <daniel@danielgrunwald.de>"]
77
readme = "README.md"
@@ -47,12 +47,12 @@ serde_cbor = { version = "0.11" }
4747
[dependencies.python27-sys]
4848
optional = true
4949
path = "python27-sys"
50-
version = "0.5.1"
50+
version = "0.5.2"
5151

5252
[dependencies.python3-sys]
5353
optional = true
5454
path = "python3-sys"
55-
version = "0.5.1"
55+
version = "0.5.2"
5656

5757
[features]
5858
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.1"
3+
version = "0.5.2"
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.1"
3+
version = "0.5.2"
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.1"
3+
version = "0.5.2"
44
description = "FFI Declarations for Python 3"
55
readme = "README.md"
66
keywords = [

0 commit comments

Comments
 (0)