Skip to content

Commit

Permalink
Release v0.31.1.
Browse files Browse the repository at this point in the history
  • Loading branch information
iliekturtles committed Mar 1, 2021
1 parent f4e2c8b commit e108175
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 6 deletions.
18 changes: 17 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,21 @@
### Fixed
### Security
-->
## [v0.31.1] — 2021-03-01
This release corrects documentation issues and documents fewer underlying
storage types on docs.rs so that container time and memory limits are not
exceeded.

### Added
* [#241](https://github.com/iliekturtles/uom/issues/241) Run `rustdoc` as part
of tool checks and resolve previously ignored warnings.

### Changed
* [#241](https://github.com/iliekturtles/uom/issues/241) Document fewer
underlying storage types on docs.rs so that container time and memory limits
are not exceeded. Previous releases documented all features and caused
documentation to fail to build.

## [v0.31.0] — 2021-01-05
This release adds a new macro, `unit!`, to allow for units to be defined outside of the
`quantity!` macro as well as a `Units` enum for each quantity. A number of standard library
Expand Down Expand Up @@ -543,7 +558,8 @@ for the creation of custom systems or the use of the pre-built SI. Basic mathema
are implemented and a minimal set of quantities (length, mass, time...) and units (meter, kilometer,
foot, mile, ...) are included.

[Unreleased]: https://github.com/iliekturtles/uom/compare/v0.31.0...master
[Unreleased]: https://github.com/iliekturtles/uom/compare/v0.31.1...master
[v0.31.1]: https://github.com/iliekturtles/uom/compare/v0.31.0...v0.31.1
[v0.31.0]: https://github.com/iliekturtles/uom/compare/v0.30.0...v0.31.0
[v0.30.0]: https://github.com/iliekturtles/uom/compare/v0.29.0...v0.30.0
[v0.29.0]: https://github.com/iliekturtles/uom/compare/v0.28.0...v0.29.0
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "uom"
version = "0.31.0"
version = "0.31.1"
edition = "2018"
authors = ["Mike Boutin <[email protected]>"]
description = "Units of measurement"
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ Units of measurement is a crate that does automatic type-safe zero-cost

```toml
[dependencies]
uom = "0.31.0"
uom = "0.31.1"
```

and this to your crate root:
Expand Down Expand Up @@ -79,7 +79,7 @@ enabled by default. Features can be cherry-picked by using the `--no-default-fea
```toml
[dependencies]
uom = {
version = "0.31.0",
version = "0.31.1",
default-features = false,
features = [
"autoconvert", # automatic base unit conversion.
Expand Down
4 changes: 2 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
//!
//! ```toml
//! [dependencies]
//! uom = "0.31.0"
//! uom = "0.31.1"
//! ```
//!
//! and this to your crate root:
Expand Down Expand Up @@ -66,7 +66,7 @@
//! ```toml
//! [dependencies]
//! uom = {
//! version = "0.31.0",
//! version = "0.31.1",
//! default-features = false,
//! features = [
//! "autoconvert", # automatic base unit conversion.
Expand Down

0 comments on commit e108175

Please sign in to comment.