diff --git a/CHANGELOG.md b/CHANGELOG.md
index 114f410..4a13733 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -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
+
### Removed
- `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.
[#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
@@ -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
[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
diff --git a/Cargo.lock b/Cargo.lock
index ab0d642..923dc8c 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -10,7 +10,7 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
[[package]]
name = "float16"
-version = "0.1.4"
+version = "0.1.5"
dependencies = [
"cfg-if",
"rustc_version",
diff --git a/Cargo.toml b/Cargo.toml
index 87e0029..78815b7 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -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 ", "Alex Huszagh "]
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"
diff --git a/src/lib.rs b/src/lib.rs
index 24051e4..fc603ac 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -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)]