This release adds new quantities, new units, bumps the MSRV (minimum supported Rust version) to 1.65.0, and fixes bitrot in Github actions.
Many thanks to Aehmlo, Code-Maniac, baarkerlounger, g1aeder, hellow554, igiona, waywardmonkeys, and yacinelakel for pull requests included and issues resolved in this release.
Added
- #429 Add
minute_per_kilometer
unit toInverseVelocity
. - #436 Add explicit
serde
feature. The newserde
feature deprecates the olduse_serde
feature which is now an alias forserde
and will be removed in a futureuom
release. - #446 Add
ArealHeatCapacity
quantity. - #450 Add
ThermalResistance
quantity.
Changed
- #425 Clarify
Conversion
documentation for converting to and from the base unit. - #432 Use
Cargo.toml
rust-version
key to identify the MSRV (minimum supported Rust version). - #445 Update basic example with example code to do unit conversions.
- #456 Commit
Cargo.lock
to pin certain crates to specific versions that supportuom
's MSRV (minimum supported Rust version). - #459 Increase MSRV (minimum supported Rust version) to
1.65.0
. No changes in this release require the new MSRV. - #457 Update github
checkout
andcache
actions tov4
. - #459 Rust 1.76.0 is now used for
rustfmt
,clippy
, andtarpaulin
jobs. - #443, #459 Resolve numerous
rustc
andclippy
warnings.