diff --git a/CHANGES b/CHANGES index 8af11de32..c56c6108a 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,8 @@ +## 0.14.1 + + * Handle mangling pointers. (#508) + * Unconditionally generate a return statement in partialeq implementations. (#509) + ## 0.14.0 * Minor tweak at how [export.exclude] is handled to allow excluding diff --git a/Cargo.lock b/Cargo.lock index d0641ee9e..cd9925a24 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -32,7 +32,7 @@ dependencies = [ [[package]] name = "cbindgen" -version = "0.14.0" +version = "0.14.1" dependencies = [ "clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/Cargo.toml b/Cargo.toml index 23e52f556..3d990dcc2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cbindgen" -version = "0.14.0" +version = "0.14.1" authors = ["Jeff Muizelaar ", "Kartikaya Gupta ", "Ryan Hunt "]