From 8fb3a90c7f4b5cce964f73146c43b2f1af37081f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Emilio=20Cobos=20=C3=81lvarez?= Date: Fri, 31 Jan 2020 01:52:18 +0100 Subject: [PATCH] Release v0.13.0 * Support 'swift_name' attributes on generated functions (#449) * Add [export.pre_body] to config (#452) * Handle new line in doc attribute (#454) * Add support for `Self` in tagged enums, structs and unions (#455, #455, #456) * Make sentinel variant respect regular config (#459) * Fix layout of tagged enums with size under some configurations (#463) * Add an option to allow configuring the order of function names in generated headers (#466) Thanks to all the awesome contributors. --- CHANGES | 10 ++++++++++ Cargo.toml | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/CHANGES b/CHANGES index 5ad8621da..7d2713218 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,13 @@ +## 0.13.0 + + * Support 'swift_name' attributes on generated functions (#449) + * Add [export.pre_body] to config (#452) + * Handle new line in doc attribute (#454) + * Add support for `Self` in tagged enums, structs and unions (#455, #455, #456) + * Make sentinel variant respect regular config (#459) + * Fix layout of tagged enums with size under some configurations (#463) + * Add an option to allow configuring the order of function names in generated headers (#466) + ## 0.12.2 * Fixed version detection with lockfile v2. https://github.com/eqrion/cbindgen/pull/446 diff --git a/Cargo.toml b/Cargo.toml index 8bcd335e6..c3d8a7eea 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cbindgen" -version = "0.12.2" +version = "0.13.0" authors = ["Jeff Muizelaar ", "Kartikaya Gupta ", "Ryan Hunt "]