From c9a9776e73aaf2408c6657c86f411901ed6076b3 Mon Sep 17 00:00:00 2001 From: Kathryn Long Date: Sun, 25 Feb 2024 19:44:16 -0500 Subject: [PATCH] bump version to 1.8.3 --- CHANGELOG.md | 5 ++++- Cargo.toml | 6 ++++-- src/lib.rs | 2 +- 3 files changed, 9 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0cb1150..45c0870 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 ### Fixed - Potential soudness issues resolved. @@ -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 diff --git a/Cargo.toml b/Cargo.toml index 256dcf9..ca723a5 100644 --- a/Cargo.toml +++ b/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 "] 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" @@ -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] diff --git a/src/lib.rs b/src/lib.rs index 2c5568b..dd39845 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -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))]