diff --git a/CHANGELOG.md b/CHANGELOG.md index 22db94b..3e7a365 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 0.5.0 + +- FEATURE: Support `$HOME/.config/build-wrap/allow.txt`. A package whose name appears in this file will be built as though `BUILD_WRAP_ALLOW` were set to `1`. ([104](https://github.com/trailofbits/build-wrap/pull/104)) + ## 0.4.1 - Unset `CARGO_TARGET_DIR` when building the wrapper package ([aa4a646](https://github.com/trailofbits/build-wrap/commit/aa4a646d8eee4e209140f12fe47554f5c3e913a8)) diff --git a/Cargo.lock b/Cargo.lock index 1079320..bc9379d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -101,7 +101,7 @@ dependencies = [ [[package]] name = "build-wrap" -version = "0.4.1" +version = "0.5.0" dependencies = [ "anyhow", "assert_cmd", diff --git a/Cargo.toml b/Cargo.toml index 64c9396..bf3a19b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "build-wrap" -version = "0.4.1" +version = "0.5.0" authors = ["Samuel Moelius "] description = "Help protect against malicious build scripts" edition = "2021"