Skip to content

Commit 6ca4d36

Browse files
VoidStarKatAlexhuszagh
authored andcommitted
Update changelog and URLs
1 parent c09068a commit 6ca4d36

5 files changed

Lines changed: 14 additions & 15 deletions

File tree

CHANGELOG.md

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

66
## [Unreleased]
77

8+
### Removed
9+
10+
- `doc_auto_cfg` feature has been removed from docs.rs documentation due to removal of rust
11+
feature.
12+
813
## [0.1.4][v0.1.4] - 2024-12-21 <a name="0.1.4"></a>
914

1015
### Fixed
1116

1217
- `min` and `max` incorrectly propagate `NaN` values when `self` is `NaN`. Fixes [#126],
1318
by [@mgottscho].
19+
- Suppressed warnings from new `unnecessary_transmutes` lint.
1420

1521
## [0.1.3][v0.1.3] - 2024-12-21 <a name="0.1.3"></a>
1622

@@ -492,6 +498,9 @@ These were all changes for half, which `float16` is a fork of.
492498
[@eiz]: https://github.com/eiz
493499
[@comath]: https://github.com/comath
494500
[@mgottscho]: https://github.com/mgottscho
501+
[@djsell]: https://github.com/djsell
502+
[@heiher]: https://github.com/heiher
503+
[@majian4work]: https://github.com/majian4work
495504

496505
<!-- Versions -->
497506

Cargo.toml

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -25,16 +25,6 @@ exclude = [
2525
default = ["std"]
2626
std = []
2727

28-
[lints.rust.unexpected_cfgs]
29-
level = "warn"
30-
check-cfg = [
31-
'cfg(kani)',
32-
'cfg(target_arch, values("spirv"))',
33-
'cfg(target_feature, values("IntegerFunctions2INTEL", "SPV_INTEL_shader_integer_functions2"))',
34-
'cfg(has_x86_intrinsics)',
35-
'cfg(has_aarch64_intrinsics)',
36-
]
37-
3828
[dependencies]
3929
cfg-if = "1.0.0"
4030

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
This a fork of [half](https://crates.io/crates/half/), which removes most dependencies and fixing minor correctness issues (at a minor performance penalty). This has no affiliation to [`half`].
44

5-
<!-- Rebased as of half-rs@62f1141 -->
5+
<!-- Rebased as of half-rs@679d009 -->
66

77
[![Crates.io](https://img.shields.io/crates/v/float16.svg)](https://crates.io/crates/float16/) [![Documentation](https://docs.rs/float16/badge.svg)](https://docs.rs/float16/) ![Crates.io](https://img.shields.io/crates/l/half) [![Build status](https://github.com/Alexhuszagh/float16/actions/workflows/rust.yml/badge.svg?branch=main&event=push)](https://github.com/Alexhuszagh/float16/actions/workflows/rust.yml)
88

src/bfloat.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1633,7 +1633,7 @@ mod test {
16331633
assert!(nan32.is_nan() && nan32.is_sign_positive());
16341634
assert!(neg_nan32.is_nan() && neg_nan32.is_sign_negative());
16351635

1636-
// f32/f64 NaN conversion sign is non-deterministic: https://github.com/starkat99/half-rs/issues/103
1636+
// f32/f64 NaN conversion sign is non-deterministic: https://github.com/VoidStarKat/half-rs/issues/103
16371637
assert!(neg_nan32_from_64.is_nan());
16381638
assert!(nan32_from_64.is_nan());
16391639
assert!(nan16_from_64.is_nan());
@@ -1660,7 +1660,7 @@ mod test {
16601660
assert!(nan32.is_nan() && nan32.is_sign_positive());
16611661
assert!(neg_nan32.is_nan() && neg_nan32.is_sign_negative());
16621662

1663-
// // f32/f64 NaN conversion sign is non-deterministic: https://github.com/starkat99/half-rs/issues/103
1663+
// // f32/f64 NaN conversion sign is non-deterministic: https://github.com/VoidStarKat/half-rs/issues/103
16641664
assert!(nan32_from_16.is_nan());
16651665
assert!(neg_nan32_from_16.is_nan());
16661666
assert!(nan64_from_16.is_nan());

src/binary16.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1754,7 +1754,7 @@ mod test {
17541754
assert!(nan32.is_nan() && nan32.is_sign_positive());
17551755
assert!(neg_nan32.is_nan() && neg_nan32.is_sign_negative());
17561756

1757-
// f32/f64 NaN conversion sign is non-deterministic: https://github.com/starkat99/half-rs/issues/103
1757+
// f32/f64 NaN conversion sign is non-deterministic: https://github.com/VoidStarKat/half-rs/issues/103
17581758
assert!(nan32_from_64.is_nan());
17591759
assert!(neg_nan32_from_64.is_nan());
17601760
assert!(nan16_from_64.is_nan());
@@ -1781,7 +1781,7 @@ mod test {
17811781
assert!(nan32.is_nan() && nan32.is_sign_positive());
17821782
assert!(neg_nan32.is_nan() && neg_nan32.is_sign_negative());
17831783

1784-
// f32/f64 NaN conversion sign is non-deterministic: https://github.com/starkat99/half-rs/issues/103
1784+
// f32/f64 NaN conversion sign is non-deterministic: https://github.com/VoidStarKat/half-rs/issues/103
17851785
assert!(nan32_from_16.is_nan());
17861786
assert!(neg_nan32_from_16.is_nan());
17871787
assert!(nan64_from_16.is_nan());

0 commit comments

Comments
 (0)