Skip to content

Commit fe23e61

Browse files
github-actions[bot]tgross35
authored andcommitted
chore: release builtins 0.1.156 and libm 0.2.12
1 parent 2dc292b commit fe23e61

File tree

4 files changed

+50
-2
lines changed

4 files changed

+50
-2
lines changed

compiler-builtins/CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.1.156](https://github.com/rust-lang/compiler-builtins/compare/compiler_builtins-v0.1.155...compiler_builtins-v0.1.156) - 2025-04-21
11+
12+
### Other
13+
14+
- avr: Provide `abort()`
15+
- Remove `unsafe` from `naked_asm!` blocks
16+
- Enable icount benchmarks in CI
17+
- Move builtins-test-intrinsics out of the workspace
18+
- Run `cargo fmt` on all projects
19+
- Flatten the `libm/libm` directory
20+
- Update path to libm after the merge
21+
1022
## [0.1.155](https://github.com/rust-lang/compiler-builtins/compare/compiler_builtins-v0.1.154...compiler_builtins-v0.1.155) - 2025-04-17
1123

1224
### Other

compiler-builtins/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
authors = ["Jorge Aparicio <[email protected]>"]
33
name = "compiler_builtins"
4-
version = "0.1.155"
4+
version = "0.1.156"
55
license = "MIT AND Apache-2.0 WITH LLVM-exception AND (MIT OR Apache-2.0)"
66
readme = "README.md"
77
repository = "https://github.com/rust-lang/compiler-builtins"

libm/CHANGELOG.md

+36
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,42 @@ and this project adheres to
88

99
## [Unreleased]
1010

11+
## [0.2.12](https://github.com/rust-lang/compiler-builtins/compare/libm-v0.2.11...libm-v0.2.12) - 2025-04-21
12+
13+
- Mark generic functions `#[inline]`
14+
- Combine the source files for `fmod`
15+
- Ensure all public functions are marked `no_panic`
16+
- Add assembly version of simple operations on aarch64
17+
- Add `roundeven{,f,f16,f128}`
18+
- Add `fminimum`, `fmaximum`, `fminimum_num`, and `fmaximum_num`
19+
- Eliminate the use of `force_eval!` in `ceil`, `floor`, and `trunc`
20+
- Port the CORE-MATH version of `cbrt`
21+
- Add `fmaf128`
22+
- fma: Ensure zero has the correct sign
23+
- Add `scalbnf16`, `scalbnf128`, `ldexpf16`, and `ldexpf128`
24+
- Specify license as just MIT
25+
- Add `fmodf128`
26+
- Add `fmodf16` using the generic implementation
27+
- Add `fminf16`, `fmaxf16`, `fminf128`, and `fmaxf128`
28+
- Add `roundf16` and `roundf128`
29+
- Add `rintf16` and `rintf128`
30+
- Add `floorf16` and `floorf128`
31+
- Add `ceilf16` and `ceilf128`
32+
- Add `sqrtf16` and `sqrtf128`
33+
- Simplify and optimize `fdim` ([#442](https://github.com/rust-lang/libm/pull/442))
34+
- Add `fdimf16` and `fdimf128`
35+
- Add `truncf16` and `truncf128`
36+
- Add `fabsf16`, `fabsf128`, `copysignf16`, and `copysignf128`
37+
- Move some numeric trait logic to default implementations
38+
- Add some more basic docstrings ([#352](https://github.com/rust-lang/libm/pull/352))
39+
- Add support for loongarch64-unknown-linux-gnu
40+
- Add an "arch" Cargo feature that is on by default
41+
- Rename the `special_case` module to `precision` and move default ULP
42+
- Move the existing "unstable" feature to "unstable-intrinsics"
43+
44+
There are a number of things that changed internally, see the git log for a full
45+
list of changes.
46+
1147
## [0.2.11](https://github.com/rust-lang/libm/compare/libm-v0.2.10...libm-v0.2.11) - 2024-10-28
1248

1349
### Fixed

libm/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ license = "MIT"
88
name = "libm"
99
readme = "README.md"
1010
repository = "https://github.com/rust-lang/compiler-builtins"
11-
version = "0.2.11"
11+
version = "0.2.12"
1212
edition = "2021"
1313
rust-version = "1.63"
1414

0 commit comments

Comments
 (0)