diff --git a/CHANGES b/CHANGES index 3ab509779..242092457 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,20 @@ +## 0.14.4 + + * Allow to override the mangling separator (#502) + + * cbindgen now handles better having ZSTs in template parameters, and + default template parameters (#563). + + * Support for annotating nonnull pointers (#558) + + * Fixed bitflags that overflow a signed integer (#556) + + * Support for wildcard argument names (#550) + + * Support for the never return type, with configurable annotation (#549) + + * Properly reject arrays as function arguments (#540) + ## 0.14.3 * Introduce cbindgen:ignore comment annotation, to allow ignoring items or modules. (#519) diff --git a/Cargo.lock b/Cargo.lock index 9752ac045..5b5a5e302 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -32,7 +32,7 @@ dependencies = [ [[package]] name = "cbindgen" -version = "0.14.3" +version = "0.14.4" dependencies = [ "clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)", "heck 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/Cargo.toml b/Cargo.toml index dd7fbaa0f..9e0ff6190 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cbindgen" -version = "0.14.3" +version = "0.14.4" authors = ["Jeff Muizelaar ", "Kartikaya Gupta ", "Ryan Hunt "]