Skip to content

Commit af38039

Browse files
committed
release: 0.14
1 parent 5b73751 commit af38039

File tree

2 files changed

+16
-7
lines changed

2 files changed

+16
-7
lines changed

CHANGELOG.md

Lines changed: 13 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,23 @@
1+
## 0.14.0 - 2021-07-05
2+
3+
- Update to PyO3 0.14
4+
15
## 0.13.0 - 2020-12-28
2-
- Update to PyO3 0.13
6+
7+
- Update to PyO3 0.13
38

49
## 0.12.1 - 2020-12-08
5-
- Require `std` feature of `serde`.
6-
- Reduce memory consumption when deserializing sequences.
7-
- Fix deserializing untagged struct enum variants.
8-
- Fix deserializing sequences from Python tuples.
10+
11+
- Require `std` feature of `serde`.
12+
- Reduce memory consumption when deserializing sequences.
13+
- Fix deserializing untagged struct enum variants.
14+
- Fix deserializing sequences from Python tuples.
915

1016
## 0.12.0 - 2020-11-22
17+
1118
- Change release versioning to match `pyo3` major/minor version.
1219
- Implement `depythonizer`
1320

1421
## 0.1.0 - 2020-08-12
22+
1523
- Initial release

Cargo.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pythonize"
3-
version = "0.13.0"
3+
version = "0.14.0"
44
authors = ["David Hewitt <1939362+davidhewitt@users.noreply.github.com>"]
55
edition = "2018"
66
license = "MIT"
@@ -12,9 +12,10 @@ documentation = "https://docs.rs/crate/pythonize/"
1212

1313
[dependencies]
1414
serde = { version = "1.0", default-features = false, features = ["std"] }
15-
pyo3 = { version = "0.13", default-features = false }
15+
pyo3 = { version = "0.14", default-features = false }
1616

1717
[dev-dependencies]
1818
serde = { version = "1.0", default-features = false, features = ["derive"] }
19+
pyo3 = { version = "0.14", default-features = false, features = ["auto-initialize"] }
1920
serde_json = "1.0"
2021
maplit = "1.0.2"

0 commit comments

Comments
 (0)