Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 33 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# Changelog

Notable changes to this project should be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
The backtrace crate attempts to adhere to the modified [Cargo interpretation of SemVer](https://doc.rust-lang.org/cargo/reference/resolver.html#semver-compatibility).
As a unique component of `std` it may make exceptional changes in order to support `std`.

## [Unreleased]

## [0.3.76](https://github.com/rust-lang/backtrace-rs/compare/backtrace-v0.3.75...backtrace-v0.3.76) - 2025-09-26

### Behavior
- Fix inverted polarity of "full printing" logic in rust-lang/backtrace-rs#726:
Previously we used to do the opposite of what you would expect.

### Platform Support

- Windows: Removed hypothetical soundness risk from padding bytes in rust-lang/backtrace-rs#737
- Fuchsia: Added appropriate alignment checks during `Elf_Nhdr` parsing in rust-lang/backtrace-rs#725
- Cygwin: Added support in rust-lang/backtrace-rs#704
- Windows (32-bit Arm): Restore support in rust-lang/backtrace-rs#685
- NuttX (32-bit Arm): Use builtin `_Unwind_GetIP` in rust-lang/backtrace-rs#692
- RTEMS: Enable libunwind in rust-lang/backtrace-rs#682

### Dependencies

- Update cpp_demangle to 0.5 in rust-lang/backtrace-rs#732
- Update memchr to 2.7.6 in rust-lang/backtrace-rs#734
- Switch from windows-targets to windows-link in rust-lang/backtrace-rs#727
- Update ruzstd to 0.8.1 in rust-lang/backtrace-rs#718
- Update object to 0.37 in rust-lang/backtrace-rs#718
- Update addr2line to 0.25 in rust-lang/backtrace-rs#718
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "backtrace"
version = "0.3.75"
version = "0.3.76"
authors = ["The Rust Project Developers"]
license = "MIT OR Apache-2.0"
readme = "README.md"
Expand Down
Loading