From d9e490ce8b836194595bd30611253a7028059da2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Emilio=20Cobos=20=C3=81lvarez?= Date: Thu, 8 Apr 2021 18:17:23 +0200 Subject: [PATCH] v0.19.0 * Simplify types in generics (#663) * Use --profile=check for macro expansion (#671) * Use exported name to prefix enum variants (#672) * Fix path attribute handling in inline submodules (#679) * Fix a stack overflow with some recursive typedefs (#680) --- CHANGES | 8 ++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/CHANGES b/CHANGES index 41241d7..dedac03 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,11 @@ +## 0.19.0 + + * Simplify types in generics (#663) + * Use --profile=check for macro expansion (#671) + * Use exported name to prefix enum variants (#672) + * Fix path attribute handling in inline submodules (#679) + * Fix a stack overflow with some recursive typedefs (#680) + ## 0.18.0 * Simplify types in nested types such as pointed-to types and function signatures (#661) diff --git a/Cargo.lock b/Cargo.lock index f8a02e6..6cbf576 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -36,7 +36,7 @@ checksum = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693" [[package]] name = "cbindgen" -version = "0.18.0" +version = "0.19.0" dependencies = [ "clap", "heck", diff --git a/Cargo.toml b/Cargo.toml index 2dd4aba..98c04ee 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cbindgen" -version = "0.18.0" +version = "0.19.0" authors = [ "Emilio Cobos Álvarez ", "Jeff Muizelaar ",