diff --git a/CHANGELOG.md b/CHANGELOG.md index 9a2cc4f3..38c6f9b6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,14 @@ As a unique component of `std` it may make exceptional changes in order to suppo ## [Unreleased] +## [0.3.77](https://github.com/rust-lang/backtrace-rs/compare/backtrace-v0.3.76...backtrace-v0.3.77) - 2025-09-26 + +### Other + +- unsafe-wrap a stray deref-project -> &raw +- update to edition 2024 and MSRV 1.88 +- update MSRV job to 1.88 + ## [0.3.76](https://github.com/rust-lang/backtrace-rs/compare/backtrace-v0.3.75...backtrace-v0.3.76) - 2025-09-26 ### Behavior diff --git a/Cargo.lock b/Cargo.lock index 766e7ae2..7b4ceaba 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1,6 +1,6 @@ # This file is automatically @generated by Cargo. # It is not intended for manual editing. -version = 3 +version = 4 [[package]] name = "addr2line" @@ -33,7 +33,7 @@ dependencies = [ [[package]] name = "backtrace" -version = "0.3.76" +version = "0.3.77" dependencies = [ "addr2line", "cfg-if", diff --git a/Cargo.toml b/Cargo.toml index 046c5ae3..55fb09ce 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "backtrace" -version = "0.3.76" +version = "0.3.77" authors = ["The Rust Project Developers"] license = "MIT OR Apache-2.0" readme = "README.md"