diff --git a/CHANGELOG.md b/CHANGELOG.md index a0f3b18de8..892a864fb2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -144,6 +144,16 @@ ## Security +# 0.58.1 + +Released 2021/04/06 + +## Added + + * Re-introduced unintentionally removed + `bindgen::Builder::whitelist_recursively` (deprecated in favor of + `bindgen::Builder::allowlist_recursively`). [#2022][] + # 0.58.0 Released 2021/04/03 diff --git a/Cargo.lock b/Cargo.lock index e7c273ebbf..7fc4535463 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -33,7 +33,7 @@ dependencies = [ [[package]] name = "bindgen" -version = "0.58.0" +version = "0.58.1" dependencies = [ "bitflags", "cexpr", diff --git a/Cargo.toml b/Cargo.toml index 4215c9598d..dd30f09ceb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -14,7 +14,7 @@ readme = "README.md" repository = "https://github.com/rust-lang/rust-bindgen" documentation = "https://docs.rs/bindgen" homepage = "https://rust-lang.github.io/rust-bindgen/" -version = "0.58.0" +version = "0.58.1" edition = "2018" build = "build.rs"