Skip to content

Commit 57d076b

Browse files
committed
Release v0.35.0.
1 parent 11f2550 commit 57d076b

File tree

4 files changed

+34
-6
lines changed

4 files changed

+34
-6
lines changed

CHANGELOG.md

+29-1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,33 @@
99
### Removed
1010
### Fixed
1111
-->
12+
## [v0.35.0] — 2023-07-??
13+
This release adds new quantities, bumps the MSRV (minimum supported Rust version) to 1.60.0, and
14+
fixes bitrot in Github actions.
15+
16+
Many thanks to [calbaker](https://github.com/calbaker), [groscoe2](https://github.com/groscoe2),
17+
[professoralex13](https://github.com/professoralex13), [robinohs](https://github.com/robinohs), and
18+
[Uzaaft](https://github.com/Uzaaft) for pull requests included and issues resolved in this release.
19+
20+
### Added
21+
* [#406](https://github.com/iliekturtles/uom/pull/406) Add `cubic_meter_per_minute` and
22+
`cubic_meter_per_hour` units to `VolumeRate`.
23+
* [#409](https://github.com/iliekturtles/uom/pull/409) Add `AngularAbsement` quantity.
24+
* [#410](https://github.com/iliekturtles/uom/pull/410) Add `MassPerEnergy` quantity.
25+
* [#417](https://github.com/iliekturtles/uom/pull/417) [Breaking] Correct `ThermalConductance`
26+
`meter_per` units to be `meter_squared_per`. Descriptions and abbreviations were already correct.
27+
* [#419](https://github.com/iliekturtles/uom/pull/419) Add `PowerRate` quantity.
28+
* [#420](https://github.com/iliekturtles/uom/pull/420) Add `InverseVelocity` quantity.
29+
30+
### Changed
31+
* [#314](https://github.com/iliekturtles/uom/issues/314) Update Github actions to use
32+
`dtolnay/rust-toolchain`. `actions-rs` is no longer maintained.
33+
* [#387](https://github.com/iliekturtles/uom/issues/387) Increase MSRV (minimum supported Rust
34+
version) to `1.60.0`. No changes in this release require the new MSRV.
35+
36+
### Fixed
37+
* Fix unnecessary qualifications warnings in quantity tests.
38+
1239
## [v0.34.0] — 2022-10-26
1340
This release adds a significant number of new quantities and units as well as a few minor fixes.
1441

@@ -711,7 +738,8 @@ for the creation of custom systems or the use of the pre-built SI. Basic mathema
711738
are implemented and a minimal set of quantities (length, mass, time...) and units (meter, kilometer,
712739
foot, mile, ...) are included.
713740

714-
[Unreleased]: https://github.com/iliekturtles/uom/compare/v0.34.0...master
741+
[Unreleased]: https://github.com/iliekturtles/uom/compare/v0.35.0...master
742+
[v0.35.0]: https://github.com/iliekturtles/uom/compare/v0.34.0...v0.35.0
715743
[v0.34.0]: https://github.com/iliekturtles/uom/compare/v0.33.0...v0.34.0
716744
[v0.33.0]: https://github.com/iliekturtles/uom/compare/v0.32.0...v0.33.0
717745
[v0.32.0]: https://github.com/iliekturtles/uom/compare/v0.31.1...v0.32.0

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "uom"
3-
version = "0.34.0"
3+
version = "0.35.0"
44
edition = "2018"
55
authors = ["Mike Boutin <mike.boutin@gmail.com>"]
66
description = "Units of measurement"

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Units of measurement is a crate that does automatic type-safe zero-cost
2727

2828
```toml
2929
[dependencies]
30-
uom = "0.34.0"
30+
uom = "0.35.0"
3131
```
3232

3333
and this to your crate root:
@@ -79,7 +79,7 @@ enabled by default. Features can be cherry-picked by using the `--no-default-fea
7979
```toml
8080
[dependencies]
8181
uom = {
82-
version = "0.34.0",
82+
version = "0.35.0",
8383
default-features = false,
8484
features = [
8585
"autoconvert", # automatic base unit conversion.

src/lib.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
//!
1919
//! ```toml
2020
//! [dependencies]
21-
//! uom = "0.34.0"
21+
//! uom = "0.35.0"
2222
//! ```
2323
//!
2424
//! and this to your crate root:
@@ -66,7 +66,7 @@
6666
//! ```toml
6767
//! [dependencies]
6868
//! uom = {
69-
//! version = "0.34.0",
69+
//! version = "0.35.0",
7070
//! default-features = false,
7171
//! features = [
7272
//! "autoconvert", # automatic base unit conversion.

0 commit comments

Comments
 (0)