Skip to content

Commit f3a92f4

Browse files
committed
Bump version for release.
1 parent 0fde829 commit f3a92f4

4 files changed

Lines changed: 6 additions & 7 deletions

File tree

CHANGELOG.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
55

66
## [Unreleased]
77

8+
## [0.1.5][v0.1.5] - 2024-12-21 <a name="0.1.5"></a>
9+
810
### Removed
911

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

478479
<!-- Contributors -->
@@ -498,13 +499,11 @@ These were all changes for half, which `float16` is a fork of.
498499
[@eiz]: https://github.com/eiz
499500
[@comath]: https://github.com/comath
500501
[@mgottscho]: https://github.com/mgottscho
501-
[@djsell]: https://github.com/djsell
502-
[@heiher]: https://github.com/heiher
503-
[@majian4work]: https://github.com/majian4work
504502

505503
<!-- Versions -->
506504

507505
[Unreleased]: https://github.com/starkat99/half-rs/compare/v2.4.1...HEAD
506+
[v0.1.5]: https://github.com/Alexhuszagh/float16/compare/v0.1.4...v0.1.5
508507
[v0.1.4]: https://github.com/Alexhuszagh/float16/compare/v0.1.3...v0.1.4
509508
[v0.1.3]: https://github.com/Alexhuszagh/float16/compare/v0.1.2...v0.1.3
510509
[v0.1.2]: https://github.com/Alexhuszagh/float16/compare/v0.1.1...v0.1.2

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "float16"
33
# Remember to keep in sync with html_root_url crate attribute
4-
version = "0.1.4"
4+
version = "0.1.5"
55
authors = ["Kathryn Long <squeeself@gmail.com>", "Alex Huszagh <ahuszagh@gmail.com>"]
66
description = "Half-precision floating point f16 and bf16 types for Rust implementing the IEEE 754-2008 standard binary16 and bfloat16 types."
77
repository = "https://github.com/Alexhuszagh/float16"

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262
//! [`bfloat16`]: https://en.wikipedia.org/wiki/Bfloat16_floating-point_format
6363
#![allow(clippy::verbose_bit_mask, clippy::cast_lossless, unexpected_cfgs)]
6464
#![cfg_attr(not(feature = "std"), no_std)]
65-
#![doc(html_root_url = "https://docs.rs/float16/0.1.3")]
65+
#![doc(html_root_url = "https://docs.rs/float16/0.1.5")]
6666
#![doc(test(attr(deny(warnings), allow(unused))))]
6767
// Until updated to use newly stabilized `from_bits`, disable new lint warning about the transmutes
6868
#![allow(unknown_lints, unnecessary_transmutes)]

0 commit comments

Comments
 (0)