Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## [Unreleased]

## [0.1.5][v0.1.5] - 2024-12-21 <a name="0.1.5"></a>

### Removed

- `doc_auto_cfg` feature has been removed from docs.rs documentation due to removal of rust
Expand Down Expand Up @@ -472,7 +474,6 @@ These were all changes for half, which `float16` is a fork of.
[#100]: https://github.com/starkat99/half-rs/issues/100
[#103]: https://github.com/starkat99/half-rs/issues/103
[#107]: https://github.com/starkat99/half-rs/issues/107
[#110]: https://github.com/starkat99/half-rs/issues/110
[#126]: https://github.com/starkat99/half-rs/issues/126

<!-- Contributors -->
Expand All @@ -498,13 +499,11 @@ These were all changes for half, which `float16` is a fork of.
[@eiz]: https://github.com/eiz
[@comath]: https://github.com/comath
[@mgottscho]: https://github.com/mgottscho
[@djsell]: https://github.com/djsell
[@heiher]: https://github.com/heiher
[@majian4work]: https://github.com/majian4work

<!-- Versions -->

[Unreleased]: https://github.com/starkat99/half-rs/compare/v2.4.1...HEAD
[v0.1.5]: https://github.com/Alexhuszagh/float16/compare/v0.1.4...v0.1.5
[v0.1.4]: https://github.com/Alexhuszagh/float16/compare/v0.1.3...v0.1.4
[v0.1.3]: https://github.com/Alexhuszagh/float16/compare/v0.1.2...v0.1.3
[v0.1.2]: https://github.com/Alexhuszagh/float16/compare/v0.1.1...v0.1.2
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "float16"
# Remember to keep in sync with html_root_url crate attribute
version = "0.1.4"
version = "0.1.5"
authors = ["Kathryn Long <squeeself@gmail.com>", "Alex Huszagh <ahuszagh@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/Alexhuszagh/float16"
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
//! [`bfloat16`]: https://en.wikipedia.org/wiki/Bfloat16_floating-point_format
#![allow(clippy::verbose_bit_mask, clippy::cast_lossless, unexpected_cfgs)]
#![cfg_attr(not(feature = "std"), no_std)]
#![doc(html_root_url = "https://docs.rs/float16/0.1.3")]
#![doc(html_root_url = "https://docs.rs/float16/0.1.5")]
#![doc(test(attr(deny(warnings), allow(unused))))]
// Until updated to use newly stabilized `from_bits`, disable new lint warning about the transmutes
#![allow(unknown_lints, unnecessary_transmutes)]
Expand Down