diff --git a/CHANGELOG.md b/CHANGELOG.md index 9a2cc4f3..cb68ad67 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,20 @@ 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) - 2026-07-03 + +### Other + +- don't test -no_uuid in CI +- Bump `object` to 0.39 (rust-lang/backtrace-rs#760) +- Fix rustfmt issues. +- [AIX] Update backtrace to account for libc changes and fix XCOFF parsing +- Merge of rust-lang/backtrace-rs#739: Fix line-tables-only on macOS 15 +- Bump rustc-demangle (rust-lang/backtrace-rs#746) +- Always use `extern "system"` for Windows imports +- Merge pull request #745 from clubby789/func-cast +- Fix `function_casts_as_integer` failures + ## [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 6ebda9ea..7184c171 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -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 b828cc27..2943e769 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"