diff --git a/CHANGELOG.md b/CHANGELOG.md index 9c7d7e24..43d7fd0d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -33,6 +33,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) * debugging: Improve error logging in server (https://github.com/zellij-org/zellij/pull/1881) * docs: add kanagawa theme (https://github.com/zellij-org/zellij/pull/1913) * fix: use 'temp_dir' instead of hard-coded '/tmp/' (https://github.com/zellij-org/zellij/pull/1898) +* debugging: Don't strip debug symbols from release binaries (https://github.com/zellij-org/zellij/pull/1916) ## [0.32.0] - 2022-10-25 diff --git a/Cargo.toml b/Cargo.toml index fb16b35d..428657a5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -45,7 +45,8 @@ members = [ [profile.release] lto = true -strip = true +# Keep debug symbols so we see function names in backtraces +strip = false [package.metadata.deb] depends = "$auto"