diff --git a/CHANGELOG.md b/CHANGELOG.md index ad78c1de..17b32237 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -151,6 +151,14 @@ ## Security +# 0.60.1 + +Released 2022/06/06 + +## Fixed + + * Fixed stack overflow in generated tests for structs with many fields (#2219). + # 0.60.0 Released 2022/06/05 diff --git a/Cargo.lock b/Cargo.lock index cf52a6f3..82ad5f18 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -30,7 +30,7 @@ checksum = "cdb031dd78e28731d87d56cc8ffef4a8f36ca26c38fe2de700543e627f8a464a" [[package]] name = "bindgen" -version = "0.60.0" +version = "0.60.1" dependencies = [ "bitflags", "cexpr", diff --git a/Cargo.toml b/Cargo.toml index 302b73bb..0cbfd059 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.60.0" +version = "0.60.1" edition = "2018" build = "build.rs"