diff --git a/CHANGES b/CHANGES index 6616429..3b5a444 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,10 @@ +## 0.17.0 + + * Add with_parse_extra_bindings to builder. (#645) + * Support NonZero and fix incorrect simplification of Option into ptr. (#647) + * Deal with name conflicts correctly in declaration type resolution. (#651) + * Support pointers to ZSTs. (#656) + ## 0.16.0 * Remove artificial restriction on lifetime parameters on enums (#604) diff --git a/Cargo.lock b/Cargo.lock index 5b5b454..7064aed 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -34,7 +34,7 @@ checksum = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693" [[package]] name = "cbindgen" -version = "0.16.0" +version = "0.17.0" dependencies = [ "clap", "heck", diff --git a/Cargo.toml b/Cargo.toml index f21d755..a44c954 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cbindgen" -version = "0.16.0" +version = "0.17.0" authors = [ "Emilio Cobos Álvarez ", "Jeff Muizelaar ",