File tree Expand file tree Collapse file tree 5 files changed +23
-8
lines changed Expand file tree Collapse file tree 5 files changed +23
-8
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.0 ...HEAD
5
+ [ Unreleased ] : https://github.com/dgrunwald/rust-cpython/compare/0.5.1 ...HEAD
6
6
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
8
16
17
+ ## 0.5.0 - 2020-04-08
9
18
- [ properties (attributes with getter/setters defined in Rust] [ 208 ] (PR by [ @markbt ] )
10
19
- [ adoption of 2018 edition and general code modernization] [ 204 ] (PR by [ @markbt ] )
11
20
- [ reference extraction for slot functions and optional reference extraction] [ 207 ] (PR by [ @markbt ] )
12
21
- [ PEP-587 initialization APIs (python3-sys for Python≥3.8)] [ 211 ] (PR by [ @indygreg ] )
13
22
- [ more import APIs (python3-sys)] [ 210 ] (PR by [ @indygreg ] )
14
23
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
+
15
30
## 0.4.1 - 2020-02-03
16
31
- [ link-time inconsistency with build config] [ 135 ] (original PR by [ @svevang ] adapted as [ 202] )
17
32
- [ missing ` pub ` classifier] [ 206 ] in ` PySharedRef ` example. (PR by [ @Alphare ] )
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
3
3
name = " cpython"
4
- version = " 0.5.0 "
4
+ version = " 0.5.1 "
5
5
description = " Bindings to Python"
6
6
authors = [" Daniel Grunwald <daniel@danielgrunwald.de>" ]
7
7
readme = " README.md"
@@ -41,12 +41,12 @@ paste = "0.1"
41
41
[dependencies .python27-sys ]
42
42
optional = true
43
43
path = " python27-sys"
44
- version = " 0.5.0 "
44
+ version = " 0.5.1 "
45
45
46
46
[dependencies .python3-sys ]
47
47
optional = true
48
48
path = " python3-sys"
49
- version = " 0.5.0 "
49
+ version = " 0.5.1 "
50
50
51
51
[features ]
52
52
default = [" python3-sys" ]
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " hello"
3
- version = " 0.5.0 "
3
+ version = " 0.5.1 "
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.0 "
3
+ version = " 0.5.1 "
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.0 "
3
+ version = " 0.5.1 "
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