From 83b3be9f884697a51f8717af8b5498866a81e62e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Emilio=20Cobos=20=C3=81lvarez?= Date: Wed, 7 Oct 2020 12:51:20 +0200 Subject: [PATCH] v0.15.0 * Allow customizing mangling of generic parameters in C (#575) * Box simplifies to T* in C (4ce324c) * ManuallyDrop and MaubeUninit simplify to T in C, and are opaque in C++ (0076a17) * C++ supports a derive-ostream annotation to derive serialization of structs, unions and enums (#582) * Large character constants have been fixed on Windows (#586) * Constants are now generated for typedefs, etc (#589) * The `sort_by` configuration option has been made to work for constants (#587) * Default sort order is source order now (sort_by = "None"), and can be changed by the above option (#587) --- CHANGES | 11 +++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 13 insertions(+), 2 deletions(-) diff --git a/CHANGES b/CHANGES index add16f2..d20bc7f 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,14 @@ +## 0.15.0 + + * Allow customizing mangling of generic parameters in C (#575) + * Box simplifies to T* in C (4ce324c) + * ManuallyDrop and MaubeUninit simplify to T in C, and are opaque in C++ (0076a17) + * C++ supports a derive-ostream annotation to derive serialization of structs, unions and enums (#582) + * Large character constants have been fixed on Windows (#586) + * Constants are now generated for typedefs, etc (#589) + * The `sort_by` configuration option has been made to work for constants (#587) + * Default sort order is source order now (sort_by = "None"), and can be changed by the above option (#587) + ## 0.14.6 * Fixed the builds with older versions of rustc. diff --git a/Cargo.lock b/Cargo.lock index 36cc203..6fc4ac0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -34,7 +34,7 @@ checksum = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693" [[package]] name = "cbindgen" -version = "0.14.6" +version = "0.15.0" dependencies = [ "clap", "heck", diff --git a/Cargo.toml b/Cargo.toml index 069f091..ec1815b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cbindgen" -version = "0.14.6" +version = "0.15.0" authors = ["Jeff Muizelaar ", "Kartikaya Gupta ", "Ryan Hunt "]