Skip to content

Commit 416de84

Browse files
committed
Release v0.15.0.
1 parent 52c0ace commit 416de84

File tree

4 files changed

+12
-6
lines changed

4 files changed

+12
-6
lines changed

CHANGELOG.md

+7-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,12 @@
1212

1313
## [Unreleased]
1414

15+
## [v0.15.0] — 2017-07-05
16+
This release adds additional `Time` units; `Frequency`, `Force`, and `Volume` quantities; and
17+
numerous floating point methods such as `min`, `max`, and `powi`.
18+
1519
### Added
20+
* [#4](https://github.com/iliekturtles/uom/issues/4) Additional `Time` units added.
1621
* Add missing `giga` units. e.g. `gigameter`.
1722
* [#11](https://github.com/iliekturtles/uom/issues/11) Add floating point classification methods
1823
`classify`, `is_finite`, `is_infinte`, `is_nan`, and `is_normal` for `Quantity`.
@@ -105,7 +110,8 @@ for the creation of custom systems or the use of the pre-built SI. Basic mathema
105110
are implemented and a minimal set of quantities (length, mass, time...) and units (meter, kilometer,
106111
foot, mile, ...) are included.
107112

108-
[Unreleased]: https://github.com/iliekturtles/uom/compare/v0.14.0...master
113+
[Unreleased]: https://github.com/iliekturtles/uom/compare/v0.15.0...master
114+
[v0.15.0]: https://github.com/iliekturtles/uom/compare/v0.14.0...v0.15.0
109115
[v0.14.0]: https://github.com/iliekturtles/uom/compare/v0.13.0...v0.14.0
110116
[v0.13.0]: https://github.com/iliekturtles/uom/compare/v0.12.0...v0.13.0
111117
[v0.12.0]: https://github.com/iliekturtles/uom/compare/v0.11.0...v0.12.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.14.0"
3+
version = "0.15.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
@@ -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.14.0"
30+
uom = "0.15.0"
3131
```
3232

3333
and this to your crate root:
@@ -68,7 +68,7 @@ and are enabled by default. Features can be cherry-picked by using the `--no-def
6868

6969
```toml
7070
[dependencies]
71-
uom = { version = "0.14.0", default-features = false, features = ["f32", "f64", "si", "std"] }
71+
uom = { version = "0.15.0", default-features = false, features = ["f32", "f64", "si", "std"] }
7272
```
7373

7474
* `f32`, `f64` -- Features to enable underlying storage types. At least one of these features must

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.14.0"
21+
//! uom = "0.15.0"
2222
//! ```
2323
//!
2424
//! and this to your crate root:
@@ -57,7 +57,7 @@
5757
//!
5858
//! ```toml
5959
//! [dependencies]
60-
//! uom = { version = "0.14.0", default-features = false, features = ["f32", "f64", "si", "std"] }
60+
//! uom = { version = "0.15.0", default-features = false, features = ["f32", "f64", "si", "std"] }
6161
//! ```
6262
//!
6363
//! * `f32`, `f64` -- Features to enable underlying storage types. At least one of these features

0 commit comments

Comments
 (0)