Skip to content

Commit 690ac16

Browse files
committed
Version 0.5.0
1 parent 9b9a734 commit 690ac16

File tree

6 files changed

+17
-9
lines changed

6 files changed

+17
-9
lines changed

CHANGELOG.md

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

33
## [Unreleased]
44

5-
[Unreleased]: https://github.com/dgrunwald/rust-cpython/compare/0.4.1...HEAD
5+
[Unreleased]: https://github.com/dgrunwald/rust-cpython/compare/0.5.0...HEAD
6+
7+
## 0.5.0 - 2020-04-08
8+
9+
- [properties (attributes with getter/setters defined in Rust][208] (PR by [@markbt])
10+
- [adoption of 2018 edition and general code modernization][204] (PR by [@markbt])
11+
- [reference extraction for slot functions and optional reference extraction][207] (PR by [@markbt])
12+
- [PEP-587 initialization APIs (python3-sys for Python≥3.8)][211] (PR by [@indygreg])
13+
- [more import APIs (python3-sys)][210] (PR by [@indygreg])
614

715
## 0.4.1 - 2020-02-03
816
- [link-time inconsistency with build config][135] (original PR by [@svevang] adapted as [202])

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.4.1"
4+
version = "0.5.0"
55
description = "Bindings to Python"
66
authors = ["Daniel Grunwald <[email protected]>"]
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.4.1"
44+
version = "0.5.0"
4545

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

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

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ To use `cpython`, add this to your `Cargo.toml`:
2424

2525
```toml
2626
[dependencies]
27-
cpython = "0.4"
27+
cpython = "0.5"
2828
```
2929

3030
#### Example program displaying the value of `sys.version`:
@@ -70,7 +70,7 @@ name = "rust2py"
7070
crate-type = ["cdylib"]
7171

7272
[dependencies.cpython]
73-
version = "0.4"
73+
version = "0.5"
7474
features = ["extension-module"]
7575
```
7676

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.4.1"
3+
version = "0.5.0"
44
authors = ["Daniel Grunwald <[email protected]>"]
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.4.1"
3+
version = "0.5.0"
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.4.1"
3+
version = "0.5.0"
44
description = "FFI Declarations for Python 3"
55
readme = "README.md"
66
keywords = [

0 commit comments

Comments
 (0)