From a00b4215a907601680f6e9acaf93df1cbafa8ded Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Emilio=20Cobos=20=C3=81lvarez?= Date: Mon, 21 Dec 2020 00:07:32 +0100 Subject: [PATCH] v0.16.0 * Remove artificial restriction on lifetime parameters on enums (#604) * Add an option for converting usize/isize into size_t/ptrdiff_t. (#606) * Allow controlling the cargo profile used for expansion. (#607) * Support wider range of expressions in enum discriminants (#614) * Support generation of Cython bindings (#590) * Fixed some issues with style=tag and recursive structs (#615) * Default C style to Both (as specified in docs) (#615) * Fix resolution of path dependencies from certain modules. (#629) * Support inlined definitions for tuple variants with a single field in C (#631) Thanks to all the awesome contributors that contributed to this release. --- CHANGES | 14 ++++++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 16 insertions(+), 2 deletions(-) diff --git a/CHANGES b/CHANGES index 6bdc92c..6616429 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,17 @@ +## 0.16.0 + + * Remove artificial restriction on lifetime parameters on enums (#604) + * Add an option for converting usize/isize into size_t/ptrdiff_t. (#606) + * Allow controlling the cargo profile used for expansion. (#607) + * Support wider range of expressions in enum discriminants (#614) + * Support generation of Cython bindings (#590) + * Fixed some issues with style=tag and recursive structs (#615) + * Default C style to Both (as specified in docs) (#615) + * Fix resolution of path dependencies from certain modules. (#629) + * Support inlined definitions for tuple variants with a single field in C (#631) + +Thanks to all the awesome contributors that contributed to this release. + ## 0.15.0 * Allow customizing mangling of generic parameters in C (#575) diff --git a/Cargo.lock b/Cargo.lock index 49c6bd9..5b5b454 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -34,7 +34,7 @@ checksum = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693" [[package]] name = "cbindgen" -version = "0.15.0" +version = "0.16.0" dependencies = [ "clap", "heck", diff --git a/Cargo.toml b/Cargo.toml index 3b2dc71..3d9c141 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cbindgen" -version = "0.15.0" +version = "0.16.0" authors = ["Jeff Muizelaar ", "Kartikaya Gupta ", "Ryan Hunt "]