|
9 | 9 | ### Removed |
10 | 10 | ### Fixed |
11 | 11 | --> |
| 12 | +## [v0.36.0] — 2024-03-20 |
| 13 | +This release adds new quantities, new units, bumps the MSRV (minimum supported Rust version) to |
| 14 | +1.65.0, and fixes bitrot in Github actions. |
| 15 | + |
| 16 | +Many thanks to [Aehmlo](https://github.com/Aehmlo), [Code-Maniac](https://github.com/Code-Maniac), |
| 17 | +[baarkerlounger](https://github.com/baarkerlounger), [g1aeder](https://github.com/g1aeder), |
| 18 | +[hellow554](https://github.com/hellow554), [igiona](https://github.com/igiona), |
| 19 | +[waywardmonkeys](https://github.com/waywardmonkeys), and |
| 20 | +[yacinelakel](https://github.com/yacinelakel) for pull requests included and issues resolved in this |
| 21 | +release. |
| 22 | + |
| 23 | +### Added |
| 24 | + * [#429](https://github.com/iliekturtles/uom/pull/429) Add `minute_per_kilometer` unit to |
| 25 | + `InverseVelocity`. |
| 26 | + * [#436](https://github.com/iliekturtles/uom/pull/436) Add explicit `serde` feature. The new |
| 27 | + `serde` feature deprecates the old `use_serde` feature which is now an alias for `serde` and will |
| 28 | + be removed in a future `uom` release. |
| 29 | + * [#446](https://github.com/iliekturtles/uom/pull/446) Add `ArealHeatCapacity` quantity. |
| 30 | + * [#450](https://github.com/iliekturtles/uom/pull/450) Add `ThermalResistance` quantity. |
| 31 | + |
| 32 | +### Changed |
| 33 | + * [#425](https://github.com/iliekturtles/uom/pull/425) Clarify `Conversion` documentation for |
| 34 | + converting to and from the base unit. |
| 35 | + * [#432](https://github.com/iliekturtles/uom/pull/432) Use `Cargo.toml` `rust-version` key to |
| 36 | + identify the MSRV (minimum supported Rust version). |
| 37 | + * [#445](https://github.com/iliekturtles/uom/pull/445) Update basic example with example code to do |
| 38 | + unit conversions. |
| 39 | + * [#456](https://github.com/iliekturtles/uom/pull/456) Commit `Cargo.lock` to pin certain crates to |
| 40 | + specific versions that support `uom`'s MSRV (minimum supported Rust version). |
| 41 | + * [#459](https://github.com/iliekturtles/uom/pull/459) Increase MSRV (minimum supported Rust |
| 42 | + version) to `1.65.0`. No changes in this release require the new MSRV. |
| 43 | + * [#457](https://github.com/iliekturtles/uom/pull/457) Update github `checkout` and `cache` actions |
| 44 | + to `v4`. |
| 45 | + * [#459](https://github.com/iliekturtles/uom/pull/459) Rust 1.76.0 is now used for `rustfmt`, |
| 46 | + `clippy`, and `tarpaulin` jobs. |
| 47 | + * [#443](https://github.com/iliekturtles/uom/pull/443), |
| 48 | + [#459](https://github.com/iliekturtles/uom/pull/459) Resolve numerous `rustc` and `clippy` |
| 49 | + warnings. |
| 50 | + |
12 | 51 | ## [v0.35.0] — 2023-07-10 |
13 | 52 | This release adds new quantities, bumps the MSRV (minimum supported Rust version) to 1.60.0, and |
14 | 53 | fixes bitrot in Github actions. |
@@ -738,7 +777,8 @@ for the creation of custom systems or the use of the pre-built SI. Basic mathema |
738 | 777 | are implemented and a minimal set of quantities (length, mass, time...) and units (meter, kilometer, |
739 | 778 | foot, mile, ...) are included. |
740 | 779 |
|
741 | | -[Unreleased]: https://github.com/iliekturtles/uom/compare/v0.35.0...master |
| 780 | +[Unreleased]: https://github.com/iliekturtles/uom/compare/v0.36.0...master |
| 781 | +[v0.36.0]: https://github.com/iliekturtles/uom/compare/v0.35.0...v0.36.0 |
742 | 782 | [v0.35.0]: https://github.com/iliekturtles/uom/compare/v0.34.0...v0.35.0 |
743 | 783 | [v0.34.0]: https://github.com/iliekturtles/uom/compare/v0.33.0...v0.34.0 |
744 | 784 | [v0.33.0]: https://github.com/iliekturtles/uom/compare/v0.32.0...v0.33.0 |
|
0 commit comments