diff --git a/compiler-builtins/CHANGELOG.md b/compiler-builtins/CHANGELOG.md index 34b413a8..378919d2 100644 --- a/compiler-builtins/CHANGELOG.md +++ b/compiler-builtins/CHANGELOG.md @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.157](https://github.com/rust-lang/compiler-builtins/compare/compiler_builtins-v0.1.156...compiler_builtins-v0.1.157) - 2025-05-01 + +### Other + +- Resolve `unnecessary_transmutes` lints +- Warn on `unsafe_op_in_unsafe_fn` by default + ## [0.1.156](https://github.com/rust-lang/compiler-builtins/compare/compiler_builtins-v0.1.155...compiler_builtins-v0.1.156) - 2025-04-21 ### Other diff --git a/compiler-builtins/Cargo.toml b/compiler-builtins/Cargo.toml index acbace68..78456377 100644 --- a/compiler-builtins/Cargo.toml +++ b/compiler-builtins/Cargo.toml @@ -1,7 +1,7 @@ [package] authors = ["Jorge Aparicio "] name = "compiler_builtins" -version = "0.1.156" +version = "0.1.157" license = "MIT AND Apache-2.0 WITH LLVM-exception AND (MIT OR Apache-2.0)" readme = "README.md" repository = "https://github.com/rust-lang/compiler-builtins" diff --git a/libm/CHANGELOG.md b/libm/CHANGELOG.md index 292561f8..8e5e88ff 100644 --- a/libm/CHANGELOG.md +++ b/libm/CHANGELOG.md @@ -8,6 +8,14 @@ and this project adheres to ## [Unreleased] +## [0.2.14](https://github.com/rust-lang/compiler-builtins/compare/libm-v0.2.13...libm-v0.2.14) - 2025-05-01 + +### Other + +- Refactor the fma modules +- Move `fma` implementations to `mod generic` +- Resolve `unnecessary_transmutes` lints + ## [0.2.13](https://github.com/rust-lang/compiler-builtins/compare/libm-v0.2.12...libm-v0.2.13) - 2025-04-21 ### Fixed diff --git a/libm/Cargo.toml b/libm/Cargo.toml index f80715ff..76c9a73b 100644 --- a/libm/Cargo.toml +++ b/libm/Cargo.toml @@ -8,7 +8,7 @@ license = "MIT" name = "libm" readme = "README.md" repository = "https://github.com/rust-lang/compiler-builtins" -version = "0.2.13" +version = "0.2.14" edition = "2021" rust-version = "1.63"