From d5313c5460cb47b4a8e6efbeae6683ec528344be Mon Sep 17 00:00:00 2001 From: Chris Laplante Date: Sun, 22 Aug 2021 22:07:07 -0400 Subject: [PATCH] update changelog to document anyhow feature --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index a90b465e1b9..ee8f585988e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,6 +14,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. - Add `PyAny::py()` as a convenience for `PyNativeType::py()`. [#1751](https://github.com/PyO3/pyo3/pull/1751) - Add implementation of `std::ops::Index` for `PyList`, `PyTuple` and `PySequence`. [#1825](https://github.com/PyO3/pyo3/pull/1825) - Add range indexing implementations of `std::ops::Index` for `PyList`, `PyTuple` and `PySequence`. [#1829](https://github.com/PyO3/pyo3/pull/1829) +- Add `anyhow` feature which provides `impl From for PyErr`. [#1822](https://github.com/PyO3/pyo3/pull/1822) ### Changed