Skip to content

Commit e8bf0f4

Browse files
chore: release
1 parent ded114b commit e8bf0f4

File tree

4 files changed

+33
-2
lines changed

4 files changed

+33
-2
lines changed

compiler-builtins/CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.1.161](https://github.com/rust-lang/compiler-builtins/compare/compiler_builtins-v0.1.160...compiler_builtins-v0.1.161) - 2025-06-04
11+
12+
### Other
13+
14+
- Upgrade all dependencies to the latest available version
15+
- Fix unintentional skips in `binop_common`
16+
- Use `x.biteq(y)` rather than `x.to_bits() == y.to_bits()`
17+
- Fix new `dead_code` warnings from recent nightlies
18+
- Reuse `libm`'s `Caat` and `CastFrom` in `compiler-builtins`
19+
- Reuse `MinInt` and `Int` from `libm` in `compiler-builtins`
20+
- Add a note saying why we use `frintx` rather than `frintn`
21+
- Typo in README.md
22+
- Update `CmpResult` to use a pointer-sized return type
23+
- Clean up unused files
24+
- Fix `i256::MAX`
25+
1026
## [0.1.160](https://github.com/rust-lang/compiler-builtins/compare/compiler_builtins-v0.1.159...compiler_builtins-v0.1.160) - 2025-05-29
1127

1228
### Other

compiler-builtins/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
authors = ["Jorge Aparicio <japaricious@gmail.com>"]
33
name = "compiler_builtins"
4-
version = "0.1.160"
4+
version = "0.1.161"
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

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,21 @@ and this project adheres to
88

99
## [Unreleased]
1010

11+
## [0.2.16](https://github.com/rust-lang/compiler-builtins/compare/libm-v0.2.15...libm-v0.2.16) - 2025-06-04
12+
13+
### Other
14+
15+
- Fix unintentional skips in `binop_common`
16+
- Use `x.biteq(y)` rather than `x.to_bits() == y.to_bits()`
17+
- Fix new `dead_code` warnings from recent nightlies
18+
- Reuse `libm`'s `Caat` and `CastFrom` in `compiler-builtins`
19+
- Reuse `MinInt` and `Int` from `libm` in `compiler-builtins`
20+
- Add a note saying why we use `frintx` rather than `frintn`
21+
- Typo in README.md
22+
- Update `CmpResult` to use a pointer-sized return type
23+
- Clean up unused files
24+
- Fix `i256::MAX`
25+
1126
## [0.2.15](https://github.com/rust-lang/compiler-builtins/compare/libm-v0.2.14...libm-v0.2.15) - 2025-05-06
1227

1328
### Other

libm/Cargo.toml

Lines changed: 1 addition & 1 deletion
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.15"
11+
version = "0.2.16"
1212
edition = "2021"
1313
rust-version = "1.63"
1414

0 commit comments

Comments
 (0)