Skip to content

Commit

Permalink
Release v0.25.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
iliekturtles committed Aug 13, 2019
1 parent 5bad272 commit e0ba705
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 6 deletions.
25 changes: 24 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,28 @@
### Security
-->

## [v0.25.0] — 2019-08-12
This release includes the long-requested `Information` and `InformationRate` quantities as well as
support for `i128`/`u128` as underlying storage types. A number of documentation updates, including
for the 9th edition of the SI, are also included.

### Added
* [#31](https://github.com/iliekturtles/uom/issues/31) `Information` (`bit`, `byte`, ...) and
`InformationRate` (`bit/s`, `byte/s`, ...) quantities added. Units for both SI (`kilo`, `mega`,
...) and binary (`kibi`, `mebi`, ...) prefixes are included.
* [#85](https://github.com/iliekturtles/uom/issues/85) Add support for `i128` and `u128` as
underlying storage types.
* [#160](https://github.com/iliekturtles/uom/pull/160) `AngularJerk` quantity added.

### Changed
* [#20](https://github.com/iliekturtles/uom/issues/20) Document generic parameters.
* [#21](https://github.com/iliekturtles/uom/issues/20) Move links inline for trait methods to work
around documentation generation bug.
* [#111](https://github.com/iliekturtles/uom/issues/111) Update documentation for SI base units for
the 9th edition of the SI.
* [#127](https://github.com/iliekturtles/uom/issues/127) Remove superscripts for power 1 to keep
all SI documentation consistent.

## [v0.24.0] — 2019-06-20
This release fixes two separate issues to ensure that zero-cost code is generated. Many thanks to
[raimundomartins](https://github.com/raimundomartins), [apopiak](https://github.com/apopiak), and
Expand Down Expand Up @@ -404,7 +426,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.24.0...master
[Unreleased]: https://github.com/iliekturtles/uom/compare/v0.25.0...master
[v0.25.0]: https://github.com/iliekturtles/uom/compare/v0.24.0...v0.25.0
[v0.24.0]: https://github.com/iliekturtles/uom/compare/v0.23.1...v0.24.0
[v0.23.1]: https://github.com/iliekturtles/uom/compare/v0.23.0...v0.23.1
[v0.23.0]: https://github.com/iliekturtles/uom/compare/v0.22.2...v0.23.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.24.0"
version = "0.25.0"
authors = ["Mike Boutin <[email protected]>"]
description = "Units of measurement"
documentation = "https://docs.rs/uom"
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.24.0"
uom = "0.25.0"
```

and this to your crate root:
Expand Down Expand Up @@ -77,7 +77,7 @@ enabled by default. Features can be cherry-picked by using the `--no-default-fea
```toml
[dependencies]
uom = {
version = "0.24.0",
version = "0.25.0",
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.24.0"
//! uom = "0.25.0"
//! ```
//!
//! and this to your crate root:
Expand Down Expand Up @@ -66,7 +66,7 @@
//! ```toml
//! [dependencies]
//! uom = {
//! version = "0.24.0",
//! version = "0.25.0",
//! default-features = false,
//! features = [
//! "autoconvert", # automatic base unit conversion.
Expand Down

0 comments on commit e0ba705

Please sign in to comment.