File tree Expand file tree Collapse file tree 5 files changed +18
-7
lines changed Expand file tree Collapse file tree 5 files changed +18
-7
lines changed Original file line number Diff line number Diff line change 2
2
3
3
## [ Unreleased]
4
4
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
6
17
7
18
## 0.5.1 - 2020-09-08
8
19
- [ ignore trailing comma in plist parsing] [ 220 ] (PR by [ @lausek ] )
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
3
3
name = " cpython"
4
- version = " 0.5.1 "
4
+ version = " 0.5.2 "
5
5
description = " Bindings to Python"
6
6
authors = [" Daniel Grunwald <daniel@danielgrunwald.de>" ]
7
7
readme = " README.md"
@@ -47,12 +47,12 @@ serde_cbor = { version = "0.11" }
47
47
[dependencies .python27-sys ]
48
48
optional = true
49
49
path = " python27-sys"
50
- version = " 0.5.1 "
50
+ version = " 0.5.2 "
51
51
52
52
[dependencies .python3-sys ]
53
53
optional = true
54
54
path = " python3-sys"
55
- version = " 0.5.1 "
55
+ version = " 0.5.2 "
56
56
57
57
[features ]
58
58
default = [" python3-sys" ]
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " hello"
3
- version = " 0.5.1 "
3
+ version = " 0.5.2 "
4
4
authors = [" Daniel Grunwald <daniel@danielgrunwald.de>" ]
5
5
edition = " 2018"
6
6
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " python27-sys"
3
- version = " 0.5.1 "
3
+ version = " 0.5.2 "
4
4
description = " FFI Declarations for Python 2.7"
5
5
readme = " README.md"
6
6
keywords = [
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " python3-sys"
3
- version = " 0.5.1 "
3
+ version = " 0.5.2 "
4
4
description = " FFI Declarations for Python 3"
5
5
readme = " README.md"
6
6
keywords = [
You can’t perform that action at this time.
0 commit comments