Skip to content

Commit

Permalink
bump version to 1.8.3
Browse files Browse the repository at this point in the history
  • Loading branch information
starkat99 committed Feb 26, 2024
1 parent f8de248 commit c9a9776
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Expand Up @@ -4,6 +4,8 @@ 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.3] - 2024-02-25 <a name="1.8.3"></a>
### Fixed
- Potential soudness issues resolved.

Expand Down Expand Up @@ -228,7 +230,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.2...HEAD
[Unreleased]: https://github.com/starkat99/half-rs/compare/v1.8.3...HEAD
[1.8.3]: https://github.com/starkat99/half-rs/compare/v1.8.2...v1.8.3
[1.8.2]: https://github.com/starkat99/half-rs/compare/v1.8.1...v1.8.2
[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
Expand Down
6 changes: 4 additions & 2 deletions Cargo.toml
@@ -1,7 +1,7 @@
[package]
name = "half"
# Remember to keep in sync with html_root_url crate attribute
version = "1.8.2"
version = "1.8.3"
authors = ["Kathryn Long <squeeself@gmail.com>"]
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 All @@ -25,7 +25,9 @@ bytemuck = { version = "1.4.1", default-features = false, features = [
serde = { version = "1.0", default-features = false, features = [
"derive",
], optional = true }
num-traits = { version = "0.2.14", default-features = false, features = ["libm"], optional = true }
num-traits = { version = "0.2.14", default-features = false, features = [
"libm",
], optional = true }
zerocopy = { version = "0.6.0", default-features = false, optional = true }

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Expand Up @@ -163,7 +163,7 @@
),
feature(stdsimd, f16c_target_feature)
)]
#![doc(html_root_url = "https://docs.rs/half/1.8.2")]
#![doc(html_root_url = "https://docs.rs/half/1.8.3")]
#![doc(test(attr(deny(warnings), allow(unused))))]
#![cfg_attr(docsrs, feature(doc_cfg))]

Expand Down

0 comments on commit c9a9776

Please sign in to comment.