diff --git a/CHANGELOG.md b/CHANGELOG.md index e85229d..0a846e5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +## [0.12.1] - 2024-05-10 +### Added +- Improve `strip = false` handling. Strip is always disabled for `cargo bloat` builds now. + Thanks to [@intelfx](https://github.com/intelfx). + ## [0.12.0] - 2024-04-14 ### Added - The `--config` flag. That matches the `cargo build --config`. diff --git a/Cargo.lock b/Cargo.lock index bbcd7a8..8a3aa88 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -19,7 +19,7 @@ checksum = "18464ccbb85e5dede30d70cc7676dc9950a0fb7dbf595a43d765be9123c616a2" [[package]] name = "cargo-bloat" -version = "0.12.0" +version = "0.12.1" dependencies = [ "binfarce", "json", @@ -45,9 +45,9 @@ checksum = "078e285eafdfb6c4b434e0d31e8cfcb5115b651496faca5749b88fafd4f23bfd" [[package]] name = "libc" -version = "0.2.153" +version = "0.2.154" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9c198f91728a82281a64e1f4f9eeb25d82cb32a5de251c6bd1b5154d63a8e7bd" +checksum = "ae743338b92ff9146ce83992f766a31066a91a8c84a45e0e9f21e7cf6de6d346" [[package]] name = "memchr" diff --git a/Cargo.toml b/Cargo.toml index 2d918ec..da86a4b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cargo-bloat" -version = "0.12.0" +version = "0.12.1" authors = ["Yevhenii Reizner "] description = "Find out what takes most of the space in your executable." categories = ["development-tools::cargo-plugins"]