Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

27 changes: 27 additions & 0 deletions libm/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,33 @@ and this project adheres to

## [Unreleased]

## [0.2.17](https://github.com/rust-lang/compiler-builtins/compare/libm-v0.2.16...libm-v0.2.17) - 2026-03-06

### Other

- Allow a clippy lint that appears in recent versions
- Replace `div!` with `unchecked_div_*`
- Replace `core::intrinsics::{cold_path, likely}`
- Reenable sincosf tests on ppc64
- Reenable should_panic tests on ppc64le
- Upgrade all dependencies to the latest incompatible versions
- Add an optimization for `trunc`
- Add an optimization for `floor`
- Fix `_status` status outputs on null-mantissa inputs
- Improve debug output for `Status`
- Add `frexpf16`
- Switch to a non-recursive algorithm for subnormals
- Print `Hexf<i32>` with `0x` and zero padding
- Add `frexpf128`, `ilogbf16`, and `ilogbf128`
- Convert `frexp` and `ilogb` to a generic implementations
- Perform some simplifications possible with the MSRV bump
- Bump the libm MSRV to 1.67
- Sort Cargo.toml `[features]` table after `[dependencies]`
- Switch to workspace dependencies
- Fix acoshf and acosh for negative inputs
- Allow unstable_name_collisions
- Merge ref '44e34e1ac6d7' from rust-lang/rust

## [0.2.16](https://github.com/rust-lang/compiler-builtins/compare/libm-v0.2.15...libm-v0.2.16) - 2025-12-07

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion libm/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "libm"
version = "0.2.16"
version = "0.2.17"
authors = [
"Alex Crichton <alex@alexcrichton.com>",
"Amanieu d'Antras <amanieu@gmail.com>",
Expand Down