Skip to content

Commit 60cd5d1

Browse files
chore: release v0.2.16
1 parent a614590 commit 60cd5d1

File tree

2 files changed

+39
-1
lines changed

2 files changed

+39
-1
lines changed

libm/CHANGELOG.md

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,44 @@
22

33
All notable changes to this project will be documented in this file.
44

5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## [Unreleased]
9+
10+
## [0.2.16](https://github.com/rust-lang/compiler-builtins/compare/libm-v0.2.15...libm-v0.2.16) - 2025-09-07
11+
12+
### Other
13+
14+
- define and implement `trait NarrowingDiv` for unsigned integer division
15+
- Fix some typos
16+
- Use `CARGO_CFG_*_{F16,F128}` rather than invoking rustc
17+
- Simplify the configuration for no-panic
18+
- Implement `floor` and `ceil` in assembly on `i586`
19+
- Avoid inlining `floor` into `rem_pio2`
20+
- Update for new warn-by-default clippy lints
21+
- Use `x86_no_sse` configuration in more places
22+
- Enable tests that were skipped on PowerPC
23+
- Allow a new lint failure in nightly
24+
- Test building custom targets and resolve an issue probing `rustc`
25+
- Use the compiler to determine whether or not to enable `f16` and `f128`
26+
- Improved integer utilities, implement shifts and bug fixes for i256 and u256
27+
- Clean up and sort manifest keys
28+
- Fix incorrect result and add tests
29+
- Fix unintentional skips in `binop_common`
30+
- Use `x.biteq(y)` rather than `x.to_bits() == y.to_bits()`
31+
- Fix new `dead_code` warnings from recent nightlies
32+
- Reuse `libm`'s `Caat` and `CastFrom` in `compiler-builtins`
33+
- Reuse `MinInt` and `Int` from `libm` in `compiler-builtins`
34+
- Add a note saying why we use `frintx` rather than `frintn`
35+
- Typo in README.md
36+
- Update `CmpResult` to use a pointer-sized return type
37+
- Clean up unused files
38+
- Fix `i256::MAX`
39+
# Changelog
40+
41+
All notable changes to this project will be documented in this file.
42+
543
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
644
and this project adheres to
745
[Semantic Versioning](https://semver.org/spec/v2.0.0.html).

libm/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "libm"
3-
version = "0.2.15"
3+
version = "0.2.16"
44
authors = ["Jorge Aparicio <[email protected]>"]
55
description = "libm in pure Rust"
66
categories = ["no-std"]

0 commit comments

Comments
 (0)