From e133f19ae666a6a6b9c6784e8140423126eddcfc Mon Sep 17 00:00:00 2001 From: Kathryn Long Date: Sat, 6 Apr 2024 16:01:11 -0400 Subject: [PATCH] bump version to 2.4.1 --- CHANGELOG.md | 5 ++++- Cargo.lock | 2 +- Cargo.toml | 2 +- README.md | 2 +- src/lib.rs | 2 +- 5 files changed, 8 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3c09421..67a4bf2 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] + +## [2.4.1] - 2024-04-06 ### Fixed - Missing macro import causing build failure on `no_std` + `alloc` feature set. Fixes [#107]. - Clippy warning on nightly rust. @@ -351,7 +353,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. [@comath]: https://github.com/comath -[Unreleased]: https://github.com/starkat99/half-rs/compare/v2.4.0...HEAD +[Unreleased]: https://github.com/starkat99/half-rs/compare/v2.4.1...HEAD +[2.4.1]: https://github.com/starkat99/half-rs/compare/v2.4.0...v2.4.1 [2.4.0]: https://github.com/starkat99/half-rs/compare/v2.3.1...v2.4.0 [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 diff --git a/Cargo.lock b/Cargo.lock index 5391ee0..273dfa3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -295,7 +295,7 @@ dependencies = [ [[package]] name = "half" -version = "2.4.0" +version = "2.4.1" dependencies = [ "bytemuck", "cfg-if", diff --git a/Cargo.toml b/Cargo.toml index d2f05d9..fab7642 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 = "2.4.0" +version = "2.4.1" 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" diff --git a/README.md b/README.md index 55da0a5..bcd8cba 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ # `f16` and `bf16` floating point types for Rust -[![Crates.io](https://img.shields.io/crates/v/half.svg)](https://crates.io/crates/half/) [![Documentation](https://docs.rs/half/badge.svg)](https://docs.rs/half/) ![Crates.io](https://img.shields.io/crates/l/half) [![Build status](https://github.com/starkat99/half-rs/actions/workflows/rust.yml/badge.svg?branch=master)](https://github.com/starkat99/half-rs/actions/workflows/rust.yml) [![CircleCI](https://dl.circleci.com/status-badge/img/gh/starkat99/half-rs/tree/main.svg?style=svg)](https://dl.circleci.com/status-badge/redirect/gh/starkat99/half-rs/tree/main) +[![Crates.io](https://img.shields.io/crates/v/half.svg)](https://crates.io/crates/half/) [![Documentation](https://docs.rs/half/badge.svg)](https://docs.rs/half/) ![Crates.io](https://img.shields.io/crates/l/half) [![Build status](https://github.com/starkat99/half-rs/actions/workflows/rust.yml/badge.svg?branch=master&event=push)](https://github.com/starkat99/half-rs/actions/workflows/rust.yml) [![CircleCI](https://dl.circleci.com/status-badge/img/gh/starkat99/half-rs/tree/main.svg?style=svg)](https://dl.circleci.com/status-badge/redirect/gh/starkat99/half-rs/tree/main) This crate implements a half-precision floating point `f16` type for Rust implementing the IEEE 754-2008 standard [`binary16`](https://en.wikipedia.org/wiki/Half-precision_floating-point_format) diff --git a/src/lib.rs b/src/lib.rs index 0aa0bac..6ea9ff5 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -200,7 +200,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.4.0")] +#![doc(html_root_url = "https://docs.rs/half/2.4.1")] #![doc(test(attr(deny(warnings), allow(unused))))] #![cfg_attr(docsrs, feature(doc_auto_cfg))]