Skip to content

Commit aef307e

Browse files
committed
Release v0.20.1.
1 parent facdae2 commit aef307e

File tree

4 files changed

+13
-6
lines changed

4 files changed

+13
-6
lines changed

CHANGELOG.md

+8-1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,12 @@
99
### Fixed
1010
### Security
1111
-->
12+
## [v0.20.1] — 2018-09-13
13+
This release resolves nightly rustc error E0659 the base.rs example caused by
14+
[rust-lang/rust](https://github.com/rust-lang/rust) pull request
15+
[#52841](https://github.com/rust-lang/rust/pull/52841) "resolve: Implement prelude search for macro
16+
paths, implement tool attributes."
17+
1218
## [v0.20.0] — 2018-09-06
1319
This release resolves long-standing issue [#3](https://github.com/iliekturtles/uom/issues/3) to
1420
implement thermodynamic temperature conversions (e.g. Celsius to Fahrenheit). Support is also added
@@ -277,7 +283,8 @@ for the creation of custom systems or the use of the pre-built SI. Basic mathema
277283
are implemented and a minimal set of quantities (length, mass, time...) and units (meter, kilometer,
278284
foot, mile, ...) are included.
279285

280-
[Unreleased]: https://github.com/iliekturtles/uom/compare/v0.20.0...master
286+
[Unreleased]: https://github.com/iliekturtles/uom/compare/v0.20.1...master
287+
[v0.20.1]: https://github.com/iliekturtles/uom/compare/v0.20.0...v0.20.1
281288
[v0.20.0]: https://github.com/iliekturtles/uom/compare/v0.19.0...v0.20.0
282289
[v0.19.0]: https://github.com/iliekturtles/uom/compare/v0.18.0...v0.19.0
283290
[v0.18.0]: https://github.com/iliekturtles/uom/compare/v0.17.0...v0.18.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.20.0"
3+
version = "0.20.1"
44
authors = ["Mike Boutin <mike.boutin@gmail.com>"]
55
description = "Units of measurement"
66
documentation = "https://docs.rs/uom"

README.md

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

2929
```toml
3030
[dependencies]
31-
uom = "0.20.0"
31+
uom = "0.20.1"
3232
```
3333

3434
and this to your crate root:
@@ -73,7 +73,7 @@ enabled by default. Features can be cherry-picked by using the `--no-default-fea
7373
```toml
7474
[dependencies]
7575
uom = {
76-
version = "0.20.0",
76+
version = "0.20.1",
7777
default-features = false,
7878
features = [
7979
"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.20.0"
21+
//! uom = "0.20.1"
2222
//! ```
2323
//!
2424
//! and this to your crate root:
@@ -65,7 +65,7 @@
6565
//! ```toml
6666
//! [dependencies]
6767
//! uom = {
68-
//! version = "0.20.0",
68+
//! version = "0.20.1",
6969
//! default-features = false,
7070
//! features = [
7171
//! "autoconvert", # automatic base unit conversion.

0 commit comments

Comments
 (0)