Skip to content

Commit 9cacb9b

Browse files
committed
Release v0.30.0.
1 parent 2f6d6c8 commit 9cacb9b

File tree

4 files changed

+25
-6
lines changed

4 files changed

+25
-6
lines changed

CHANGELOG.md

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,24 @@
99
### Fixed
1010
### Security
1111
-->
12+
## [v0.30.0] — 2020-10-17
13+
This release adds a new quantity, `RadiantExposure`, implements `Unpin` for `Quantity` and
14+
upgrades `uom` to the 2018 edition. These changes also include an increase of the minimum
15+
supported `rustc` to 1.37.0. Many thanks to [nicodemus26](https://github.com/nicodemus26) and
16+
(Michael-F-Bryan)[https://github.com/Michael-F-Bryan] for pull requests included and issues
17+
resolved in this release.
18+
19+
### Added
20+
* [#202](https://github.com/iliekturtles/uom/pull/202) `RadiantExposure` quantity added.
21+
* [#204](https://github.com/iliekturtles/uom/issues/204) Implement `Unpin` for `Quantity`.
22+
23+
### Changed
24+
* [#206](https://github.com/iliekturtles/uom/pull/206) Upgrade `uom` to compile using the 2018
25+
edition. Generated code still supports both the 2015 and 2018 edition.
26+
* [#207](https://github.com/iliekturtles/uom/pull/207) Increase minimum supported `rustc` version
27+
to 1.37.0. Required to support upgrading to the latest dependencies and to allow for the Kleene
28+
`?` "at most one" repetition operator.
29+
1230
## [v0.29.0] — 2020-08-06
1331
This release includes a number of changes for `Angle`, the addition of `SolidAngle`, and a new
1432
units for `Energy` and `Luminance`. Many thanks to
@@ -492,7 +510,8 @@ for the creation of custom systems or the use of the pre-built SI. Basic mathema
492510
are implemented and a minimal set of quantities (length, mass, time...) and units (meter, kilometer,
493511
foot, mile, ...) are included.
494512

495-
[Unreleased]: https://github.com/iliekturtles/uom/compare/v0.29.0...master
513+
[Unreleased]: https://github.com/iliekturtles/uom/compare/v0.30.0...master
514+
[v0.30.0]: https://github.com/iliekturtles/uom/compare/v0.29.0...v0.30.0
496515
[v0.29.0]: https://github.com/iliekturtles/uom/compare/v0.28.0...v0.29.0
497516
[v0.28.0]: https://github.com/iliekturtles/uom/compare/v0.27.0...v0.28.0
498517
[v0.27.0]: https://github.com/iliekturtles/uom/compare/v0.26.0...v0.27.0

Cargo.toml

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

README.md

Lines changed: 2 additions & 2 deletions
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.29.0"
30+
uom = "0.30.0"
3131
```
3232

3333
and this to your crate root:
@@ -77,7 +77,7 @@ enabled by default. Features can be cherry-picked by using the `--no-default-fea
7777
```toml
7878
[dependencies]
7979
uom = {
80-
version = "0.29.0",
80+
version = "0.30.0",
8181
default-features = false,
8282
features = [
8383
"autoconvert", # automatic base unit conversion.

src/lib.rs

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

0 commit comments

Comments
 (0)