Skip to content

Commit

Permalink
bump version to 1.8.1
Browse files Browse the repository at this point in the history
  • Loading branch information
starkat99 committed Oct 21, 2021
1 parent 661708e commit 28b07e0
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
7 changes: 5 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,10 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [1.8.1] - 2021-10-21 <a name="1.8.1"></a>
### Changed
- Now uses cargo resolver version 2 to prevent dev dependencies from enabling `std` feature on
- Now uses cargo resolver version 2 to prevent dev-dependencies from enabling `std` feature on
optional dependencies.

### Fixed
Expand Down Expand Up @@ -216,7 +218,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
[@samcrow]: https://github.com/samcrow


[Unreleased]: https://github.com/starkat99/half-rs/compare/v1.8.0...HEAD
[Unreleased]: https://github.com/starkat99/half-rs/compare/v1.8.1...HEAD
[1.8.1]: https://github.com/starkat99/half-rs/compare/v1.8.0...v1.8.1
[1.8.0]: https://github.com/starkat99/half-rs/compare/v1.7.1...v1.8.0
[1.7.1]: https://github.com/starkat99/half-rs/compare/v1.7.0...v1.7.1
[1.7.0]: https://github.com/starkat99/half-rs/compare/v1.6.0...v1.7.0
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "half"
# Remember to keep in sync with html_root_url crate attribute
version = "1.8.1-dev"
version = "1.8.1"
authors = ["Kathryn Long <[email protected]>"]
description = "Half-precision floating point f16 and bf16 types for Rust implementing the IEEE 754-2008 standard binary16 and bfloat16 types."
repository = "https://github.com/starkat99/half-rs"
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@
),
feature(stdsimd, f16c_target_feature)
)]
#![doc(html_root_url = "https://docs.rs/half/1.8.0")]
#![doc(html_root_url = "https://docs.rs/half/1.8.1")]
#![doc(test(attr(deny(warnings), allow(unused))))]
#![cfg_attr(docsrs, feature(doc_cfg))]

Expand Down

0 comments on commit 28b07e0

Please sign in to comment.