Skip to content

Commit 679d009

Browse files
committed
Bump version 2.7.0
1 parent fc339a3 commit 679d009

File tree

4 files changed

+9
-6
lines changed

4 files changed

+9
-6
lines changed

CHANGELOG.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
44
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
55

66
## [Unreleased]
7+
8+
## [2.7.0] - 2025-10-08 <a name="2.7.0"></a>
79
### Changed
810
- `zerocopy` is now a required dependency. The optional `zerocopy` crate feature is deprecated.
911
This change is to ensure better code safety and prevent potential unsound behavior.
@@ -24,7 +26,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
2426
- `doc_auto_cfg` feature has been removed from docs.rs documentation due to removal of rust
2527
feature.
2628

27-
## [2.6.0] - 2024-04-08 <a name="2.6.0"></a>
29+
## [2.6.0] - 2025-04-08 <a name="2.6.0"></a>
2830
### Changed
2931
- Fixed some incorrect minimum supported versions of dependencies that weren't caught due to
3032
improper `Cargo.lock`:
@@ -35,7 +37,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
3537
### Added
3638
- `f16` and `bf16` now implement `Immutable` and `KnownLayout` for `zerocopy` crate. By [@usamoi].
3739

38-
## [2.5.0] - 2024-03-13 <a name="2.5.0"></a>
40+
## [2.5.0] - 2025-03-13 <a name="2.5.0"></a>
3941
### Changed
4042
- Updated optional dependencies to latest major versions:
4143
* `zercopy` 0.6 -> 0.8
@@ -411,7 +413,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
411413
[@majian4work]: https://github.com/majian4work
412414

413415

414-
[Unreleased]: https://github.com/starkat99/half-rs/compare/v2.6.0...HEAD
416+
[Unreleased]: https://github.com/starkat99/half-rs/compare/v2.7.0...HEAD
417+
[2.7.0]: https://github.com/starkat99/half-rs/compare/v2.6.0...v2.7.0
415418
[2.6.0]: https://github.com/starkat99/half-rs/compare/v2.5.0...v2.6.0
416419
[2.5.0]: https://github.com/starkat99/half-rs/compare/v2.4.1...v2.5.0
417420
[2.4.1]: https://github.com/starkat99/half-rs/compare/v2.4.0...v2.4.1

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 = "half"
33
# Remember to keep in sync with html_root_url crate attribute
4-
version = "2.6.0"
4+
version = "2.7.0"
55
authors = ["Kathryn Long <squeeself@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/VoidStarKat/half-rs"

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@
223223
)]
224224
#![allow(clippy::verbose_bit_mask, clippy::cast_lossless, unexpected_cfgs)]
225225
#![cfg_attr(not(feature = "std"), no_std)]
226-
#![doc(html_root_url = "https://docs.rs/half/2.6.0")]
226+
#![doc(html_root_url = "https://docs.rs/half/2.7.0")]
227227
#![doc(test(attr(deny(warnings), allow(unused))))]
228228
// Until updated to use newly stabilized `from_bits`, disable new lint warning about the transmutes
229229
#![allow(unknown_lints, unnecessary_transmutes)]

0 commit comments

Comments
 (0)