Skip to content

Commit e108175

Browse files
committed
Release v0.31.1.
1 parent f4e2c8b commit e108175

File tree

4 files changed

+22
-6
lines changed

4 files changed

+22
-6
lines changed

CHANGELOG.md

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,21 @@
99
### Fixed
1010
### Security
1111
-->
12+
## [v0.31.1] — 2021-03-01
13+
This release corrects documentation issues and documents fewer underlying
14+
storage types on docs.rs so that container time and memory limits are not
15+
exceeded.
16+
17+
### Added
18+
* [#241](https://github.com/iliekturtles/uom/issues/241) Run `rustdoc` as part
19+
of tool checks and resolve previously ignored warnings.
20+
21+
### Changed
22+
* [#241](https://github.com/iliekturtles/uom/issues/241) Document fewer
23+
underlying storage types on docs.rs so that container time and memory limits
24+
are not exceeded. Previous releases documented all features and caused
25+
documentation to fail to build.
26+
1227
## [v0.31.0] — 2021-01-05
1328
This release adds a new macro, `unit!`, to allow for units to be defined outside of the
1429
`quantity!` macro as well as a `Units` enum for each quantity. A number of standard library
@@ -543,7 +558,8 @@ for the creation of custom systems or the use of the pre-built SI. Basic mathema
543558
are implemented and a minimal set of quantities (length, mass, time...) and units (meter, kilometer,
544559
foot, mile, ...) are included.
545560

546-
[Unreleased]: https://github.com/iliekturtles/uom/compare/v0.31.0...master
561+
[Unreleased]: https://github.com/iliekturtles/uom/compare/v0.31.1...master
562+
[v0.31.1]: https://github.com/iliekturtles/uom/compare/v0.31.0...v0.31.1
547563
[v0.31.0]: https://github.com/iliekturtles/uom/compare/v0.30.0...v0.31.0
548564
[v0.30.0]: https://github.com/iliekturtles/uom/compare/v0.29.0...v0.30.0
549565
[v0.29.0]: https://github.com/iliekturtles/uom/compare/v0.28.0...v0.29.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.31.0"
3+
version = "0.31.1"
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.31.0"
30+
uom = "0.31.1"
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.31.0",
82+
version = "0.31.1",
8383
default-features = false,
8484
features = [
8585
"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.31.0"
21+
//! uom = "0.31.1"
2222
//! ```
2323
//!
2424
//! and this to your crate root:
@@ -66,7 +66,7 @@
6666
//! ```toml
6767
//! [dependencies]
6868
//! uom = {
69-
//! version = "0.31.0",
69+
//! version = "0.31.1",
7070
//! default-features = false,
7171
//! features = [
7272
//! "autoconvert", # automatic base unit conversion.

0 commit comments

Comments
 (0)