Skip to content

Commit

Permalink
Version 0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
gracinet committed Apr 8, 2020
1 parent 9b9a734 commit 690ac16
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 9 deletions.
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,15 @@

## [Unreleased]

[Unreleased]: https://github.com/dgrunwald/rust-cpython/compare/0.4.1...HEAD
[Unreleased]: https://github.com/dgrunwald/rust-cpython/compare/0.5.0...HEAD

## 0.5.0 - 2020-04-08

- [properties (attributes with getter/setters defined in Rust][208] (PR by [@markbt])
- [adoption of 2018 edition and general code modernization][204] (PR by [@markbt])
- [reference extraction for slot functions and optional reference extraction][207] (PR by [@markbt])
- [PEP-587 initialization APIs (python3-sys for Python≥3.8)][211] (PR by [@indygreg])
- [more import APIs (python3-sys)][210] (PR by [@indygreg])

## 0.4.1 - 2020-02-03
- [link-time inconsistency with build config][135] (original PR by [@svevang] adapted as [202])
Expand Down
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]

name = "cpython"
version = "0.4.1"
version = "0.5.0"
description = "Bindings to Python"
authors = ["Daniel Grunwald <[email protected]>"]
readme = "README.md"
Expand Down Expand Up @@ -41,12 +41,12 @@ paste = "0.1"
[dependencies.python27-sys]
optional = true
path = "python27-sys"
version = "0.4.1"
version = "0.5.0"

[dependencies.python3-sys]
optional = true
path = "python3-sys"
version = "0.4.1"
version = "0.5.0"

[features]
default = ["python3-sys"]
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ To use `cpython`, add this to your `Cargo.toml`:

```toml
[dependencies]
cpython = "0.4"
cpython = "0.5"
```

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

[dependencies.cpython]
version = "0.4"
version = "0.5"
features = ["extension-module"]
```

Expand Down
2 changes: 1 addition & 1 deletion extensions/hello/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "hello"
version = "0.4.1"
version = "0.5.0"
authors = ["Daniel Grunwald <[email protected]>"]
edition = "2018"

Expand Down
2 changes: 1 addition & 1 deletion python27-sys/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "python27-sys"
version = "0.4.1"
version = "0.5.0"
description = "FFI Declarations for Python 2.7"
readme = "README.md"
keywords = [
Expand Down
2 changes: 1 addition & 1 deletion python3-sys/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "python3-sys"
version = "0.4.1"
version = "0.5.0"
description = "FFI Declarations for Python 3"
readme = "README.md"
keywords = [
Expand Down

0 comments on commit 690ac16

Please sign in to comment.