Skip to content

Commit cd4c34e

Browse files
authored
Release v0.10.1 (#81)
1 parent af362a1 commit cd4c34e

3 files changed

Lines changed: 6 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff 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.10.1] - 2025-01-09
10+
### Added
11+
- Added formatting (and thus Python support) for heat capacity rates. [#81](https://github.com/itt-ustutt/quantity/pull/81)
12+
913
## [0.10.0] - 2024-12-05
1014
### Packaging
1115
- Update `pyo3` and `numpy` dependencies to 0.23. [#76](https://github.com/itt-ustutt/quantity/pull/76)

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "quantity"
3-
version = "0.10.0"
3+
version = "0.10.1"
44
authors = [
55
"Philipp Rehner <prehner@ethz.ch>",
66
"Gernot Bauer <bauer@itt.uni-stuttgart.de>",

src/fmt.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -141,6 +141,7 @@ impl_fmt!(Z0, Z0, P1, Z0, Z0, N1, GRAM / MOL, "g/mol", Some(MEGA));
141141
impl_fmt!(Z0, P2, Z0, Z0, Z0, Z0, M2, "m²", None);
142142
impl_fmt!(Z0, P3, Z0, Z0, Z0, Z0, M3, "m³", None);
143143
impl_fmt!(N1, P3, N1, Z0, Z0, Z0, M3 / KG / SECOND, "m³/kg/s²", None);
144+
impl_fmt!(N3, P2, P1, Z0, N1, Z0, WATT / KELVIN, "W/K", None);
144145

145146
fn get_prefix(value: f64, has_prefix: Option<f64>) -> (f64, &'static str) {
146147
if let Some(p) = has_prefix {

0 commit comments

Comments
 (0)