Skip to content

Commit eb2ec08

Browse files
committed
Release v0.17.0.
1 parent 9603dd6 commit eb2ec08

File tree

4 files changed

+11
-7
lines changed

4 files changed

+11
-7
lines changed

CHANGELOG.md

+6-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,10 @@
99
### Fixed
1010
### Security
1111
-->
12-
## [Unreleased]
12+
## [v0.17.0] — 2018-03-14
13+
This release implements a number of common traits from the standard library, the
14+
[`num`](https://crates.io/crates/num) crate, and the
15+
[`serde`](https://crates.io/crates/serde) crate.
1316

1417
### Added
1518
* [#16](https://github.com/iliekturtles/uom/issues/16) Implement `Default`.
@@ -167,7 +170,8 @@ for the creation of custom systems or the use of the pre-built SI. Basic mathema
167170
are implemented and a minimal set of quantities (length, mass, time...) and units (meter, kilometer,
168171
foot, mile, ...) are included.
169172

170-
[Unreleased]: https://github.com/iliekturtles/uom/compare/v0.16.0...master
173+
[Unreleased]: https://github.com/iliekturtles/uom/compare/v0.17.0...master
174+
[v0.17.0]: https://github.com/iliekturtles/uom/compare/v0.16.0...v0.17.0
171175
[v0.16.0]: https://github.com/iliekturtles/uom/compare/v0.15.0...v0.16.0
172176
[v0.15.0]: https://github.com/iliekturtles/uom/compare/v0.14.0...v0.15.0
173177
[v0.14.0]: https://github.com/iliekturtles/uom/compare/v0.13.0...v0.14.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.16.0"
3+
version = "0.17.0"
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.16.0"
31+
uom = "0.17.0"
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.16.0",
76+
version = "0.17.0",
7777
default-features = false,
7878
features = [
7979
"usize", "u8", "u16", "u32", "u64", # Unsigned integer storage types.

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.16.0"
21+
//! uom = "0.17.0"
2222
//! ```
2323
//!
2424
//! and this to your crate root:
@@ -61,7 +61,7 @@
6161
//! ```toml
6262
//! [dependencies]
6363
//! uom = {
64-
//! version = "0.16.0",
64+
//! version = "0.17.0",
6565
//! default-features = false,
6666
//! features = [
6767
//! "usize", "u8", "u16", "u32", "u64", # Unsigned integer storage types.

0 commit comments

Comments
 (0)