* Add with_parse_extra_bindings to builder. (#645)
 * Support NonZero and fix incorrect simplification of Option<ptr> into ptr. (#647)
 * Deal with name conflicts correctly in declaration type resolution. (#651)
 * Support pointers to ZSTs. (#656)
This commit is contained in:
Emilio Cobos Álvarez 2021-02-01 13:43:22 +01:00
parent 3d41d33ffe
commit 8236c82679
No known key found for this signature in database
GPG Key ID: E1152D0994E4BF8A
3 changed files with 9 additions and 2 deletions

View File

@ -1,3 +1,10 @@
## 0.17.0
* Add with_parse_extra_bindings to builder. (#645)
* Support NonZero and fix incorrect simplification of Option<ptr> 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)

2
Cargo.lock generated
View File

@ -34,7 +34,7 @@ checksum = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693"
[[package]]
name = "cbindgen"
version = "0.16.0"
version = "0.17.0"
dependencies = [
"clap",
"heck",

View File

@ -1,6 +1,6 @@
[package]
name = "cbindgen"
version = "0.16.0"
version = "0.17.0"
authors = [
"Emilio Cobos Álvarez <emilio@crisal.io>",
"Jeff Muizelaar <jmuizelaar@mozilla.com>",