Skip to content

Commit

Permalink
bump version to 2.3.1 to fix #93
Browse files Browse the repository at this point in the history
  • Loading branch information
starkat99 committed Jun 26, 2023
1 parent 280bc79 commit cabfc74
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## [Unreleased]

## [2.3.1] - 2023-06-24 <a name="2.3.1"></a>
### Fixed
- Compile error on x86 (not x86_64) targets. Fixes [#93].

## [2.3.0] - 2023-06-24 <a name="2.3.0"></a>
### Added
- Support for Kani Rust Verifier. By [@cameron1024].
Expand Down Expand Up @@ -307,6 +311,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
[#60]: https://github.com/starkat99/half-rs/issues/60
[#66]: https://github.com/starkat99/half-rs/issues/66
[#54]: https://github.com/starkat99/half-rs/issues/54
[#93]: https://github.com/starkat99/half-rs/issues/54

[@tspiteri]: https://github.com/tspiteri
[@PSeitz]: https://github.com/PSeitz
Expand All @@ -329,7 +334,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
[@eiz]: https://github.com/eiz


[Unreleased]: https://github.com/starkat99/half-rs/compare/v2.3.0...HEAD
[Unreleased]: https://github.com/starkat99/half-rs/compare/v2.3.1...HEAD
[2.3.1]: https://github.com/starkat99/half-rs/compare/v2.3.0...v2.3.1
[2.3.0]: https://github.com/starkat99/half-rs/compare/v2.2.1...v2.3.0
[2.2.1]: https://github.com/starkat99/half-rs/compare/v2.2.0...v2.2.1
[2.2.0]: https://github.com/starkat99/half-rs/compare/v2.1.0...v2.2.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 = "2.3.0"
version = "2.3.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 @@ -197,7 +197,7 @@
#![cfg_attr(not(target_arch = "spirv"), warn(missing_debug_implementations))]
#![allow(clippy::verbose_bit_mask, clippy::cast_lossless)]
#![cfg_attr(not(feature = "std"), no_std)]
#![doc(html_root_url = "https://docs.rs/half/2.3.0")]
#![doc(html_root_url = "https://docs.rs/half/2.3.1")]
#![doc(test(attr(deny(warnings), allow(unused))))]
#![cfg_attr(docsrs, feature(doc_auto_cfg))]

Expand Down

0 comments on commit cabfc74

Please sign in to comment.