diff --git a/CHANGELOG.md b/CHANGELOG.md index 5fc60b3..d4c4481 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.10.0] - 2024-12-05 +### Packaging +- Update `pyo3` and `numpy` dependencies to 0.23. [#76](https://github.com/itt-ustutt/quantity/pull/76) + ## [0.9.1] - 2024-11-28 ### Fixed - Added division by `CELSIUS` in Python. [#74](https://github.com/itt-ustutt/quantity/pull/74) diff --git a/Cargo.toml b/Cargo.toml index 1bbd10b..2d14098 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "quantity" -version = "0.9.1" +version = "0.10.0" authors = [ "Philipp Rehner ", "Gernot Bauer ", @@ -32,7 +32,7 @@ approx = { version = "0.5", optional = true } pyo3 = { version = "0.23", optional = true } numpy = { version = "0.23", optional = true } ## Use generalized (hyper-)dual numbers from the [num-dual] crate as value of a quantity. -num-dual = { version = "0.10", optional = true } +num-dual = { version = "0.11", optional = true } [features] default = [] diff --git a/README.md b/README.md index 2b1933e..3a0d988 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ Add this to your `Cargo.toml`: ``` [dependencies] -quantity = "0.9" +quantity = "0.10" ``` ## Examples