Skip to content

Commit b1894e9

Browse files
committed
Bump version to 2.6.0
1 parent ec91af5 commit b1894e9

File tree

4 files changed

+7
-5
lines changed

4 files changed

+7
-5
lines changed

CHANGELOG.md

Lines changed: 4 additions & 2 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.6.0] - 2024-04-08 <a name="2.6.0"></a>
79
### Changed
810
- Fixed some incorrect minimum supported versions of dependencies that weren't caught due to
911
improper `Cargo.lock`:
@@ -14,7 +16,6 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
1416
### Added
1517
- `f16` and `bf16` now implement `Immutable` and `KnownLayout` for `zerocopy` crate. By [@usamoi].
1618

17-
1819
## [2.5.0] - 2024-03-13 <a name="2.5.0"></a>
1920
### Changed
2021
- Updated optional dependencies to latest major versions:
@@ -386,7 +387,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
386387
[@usamoi]: https://github.com/usamoi
387388

388389

389-
[Unreleased]: https://github.com/starkat99/half-rs/compare/v2.5.0...HEAD
390+
[Unreleased]: https://github.com/starkat99/half-rs/compare/v2.6.0...HEAD
391+
[2.6.0]: https://github.com/starkat99/half-rs/compare/v2.5.0...v2.6.0
390392
[2.5.0]: https://github.com/starkat99/half-rs/compare/v2.4.1...v2.5.0
391393
[2.4.1]: https://github.com/starkat99/half-rs/compare/v2.4.0...v2.4.1
392394
[2.4.0]: https://github.com/starkat99/half-rs/compare/v2.3.1...v2.4.0

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.5.0"
4+
version = "2.6.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
@@ -216,7 +216,7 @@
216216
#![cfg_attr(not(target_arch = "spirv"), warn(missing_debug_implementations))]
217217
#![allow(clippy::verbose_bit_mask, clippy::cast_lossless, unexpected_cfgs)]
218218
#![cfg_attr(not(feature = "std"), no_std)]
219-
#![doc(html_root_url = "https://docs.rs/half/2.5.0")]
219+
#![doc(html_root_url = "https://docs.rs/half/2.6.0")]
220220
#![doc(test(attr(deny(warnings), allow(unused))))]
221221
#![cfg_attr(docsrs, feature(doc_auto_cfg))]
222222

0 commit comments

Comments
 (0)