From 8236c8267936ae66785cd236c9c119c2f5b95b57 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Emilio=20Cobos=20=C3=81lvarez?= Date: Mon, 1 Feb 2021 13:43:22 +0100 Subject: [PATCH] v0.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) --- CHANGES | 7 +++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) 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 ",