File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66
77## [ Unreleased]
88
9+ ## [ 0.12.1] - 2025-12-04
10+ ### Fixed
11+ - Updated ` ndarray ` dependency to 0.17 to fix incorrect dependency resolution. [ #94 ] ( https://github.com/itt-ustutt/quantity/pull/94 )
12+
913## [ 0.12.0] - 2025-11-08
1014### Packaging
1115- Updated ` pyo3 ` and ` numpy ` dependencies to 0.27. [ #93 ] ( https://github.com/itt-ustutt/quantity/pull/93 )
Original file line number Diff line number Diff line change 11[package ]
22name = " quantity"
3- version = " 0.12.0 "
3+ version = " 0.12.1 "
44authors = [
55 " Philipp Rehner <prehner@ethz.ch>" ,
66 " Gernot Bauer <bauer@itt.uni-stuttgart.de>" ,
@@ -28,7 +28,7 @@ typenum = "1.17"
2828num-traits = " 0.2"
2929document-features = " 0.2"
3030# # Use N-dimensional arrays from the [ndarray] crate as value of a quantity.
31- ndarray = { version = " 0.16 " , optional = true }
31+ ndarray = { version = " 0.17 " , optional = true }
3232# # Use dynamic or static arrays from the [nalgebra] crate as value of a quantity.
3333nalgebra = { version = " 0.34" , optional = true }
3434approx = { version = " 0.5" , optional = true }
Original file line number Diff line number Diff line change @@ -10,5 +10,5 @@ crate-type = ["cdylib"]
1010[dependencies ]
1111pyo3 = { version = " 0.27" , features = [" extension-module" , " abi3-py310" ] }
1212quantity = { version = " *" , path = " ../../" , features = [" python_numpy" ] }
13- ndarray = " 0.16 "
13+ ndarray = " 0.17 "
1414nalgebra = " 0.34"
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ name = "_core"
2121crate-type = [" cdylib" ]
2222
2323[dependencies ]
24- ndarray = " 0.16 "
24+ ndarray = " 0.17 "
2525numpy = " 0.27"
2626pyo3 = { version = " 0.27" , features = [" extension-module" , " abi3-py310" ] }
2727regex = " 1.12"
You can’t perform that action at this time.
0 commit comments