From b30bb837c267b9d4393bf486f7ea18677d167689 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Emilio=20Cobos=20=C3=81lvarez?= Date: Tue, 19 Nov 2019 17:08:56 +0100 Subject: [PATCH] Add missing changelog for v0.10.0. * Initialize struct literal with list-initializer for C++11 standard (#401) * Surround namespace with __cplusplus ifdef in cpp_compat mode * Add support for --quiet flag * Map char to char32_t * Improve binding_crate_ref() error message * avoid prematurely returning during expansion * Add support for adding "using namespace" statements --- CHANGES | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/CHANGES b/CHANGES index f93d2ef..feede32 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,13 @@ +## 0.10.0 + + * Initialize struct literal with list-initializer for C++11 standard. https://github.com/eqrion/cbindgen/pull/401 + * Surround namespace with __cplusplus ifdef in cpp_compat mode. https://github.com/eqrion/cbindgen/pull/407 + * Add support for --quiet flag. https://github.com/eqrion/cbindgen/pull/400 + * Map char to char32_t. https://github.com/eqrion/cbindgen/pull/396 + * Improve binding_crate_ref() error message. https://github.com/eqrion/cbindgen/pull/395 + * avoid prematurely returning during expansion. https://github.com/eqrion/cbindgen/pull/389 + * Add support for adding "using namespace" statements. https://github.com/eqrion/cbindgen/pull/387 + ## 0.9.1 * Various improvements to comment output. https://github.com/eqrion/cbindgen/pull/370 / https://github.com/eqrion/cbindgen/pull/375.