From ac1a7d47e87658cf36cb7e56edad7fa5f935dddd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Emilio=20Cobos=20=C3=81lvarez?= Date: Fri, 10 Jan 2020 14:07:52 +0100 Subject: [PATCH] Release 0.12.2 * Fixed version detection with lockfile v2. https://github.com/eqrion/cbindgen/pull/446 * Added support for export_name on functions. https://github.com/eqrion/cbindgen/pull/447 --- CHANGES | 5 +++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGES b/CHANGES index 69465a3a8..5ad8621da 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,8 @@ +## 0.12.2 + + * Fixed version detection with lockfile v2. https://github.com/eqrion/cbindgen/pull/446 + * Added support for export_name on functions. https://github.com/eqrion/cbindgen/pull/447 + ## 0.12.1 * Added support for #[repr*64)] on enums. https://github.com/eqrion/cbindgen/pull/441 diff --git a/Cargo.lock b/Cargo.lock index 67c201dfb..ed3a134ea 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -32,7 +32,7 @@ dependencies = [ [[package]] name = "cbindgen" -version = "0.12.1" +version = "0.12.2" dependencies = [ "clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/Cargo.toml b/Cargo.toml index c8648ef2c..8bcd335e6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cbindgen" -version = "0.12.1" +version = "0.12.2" authors = ["Jeff Muizelaar ", "Kartikaya Gupta ", "Ryan Hunt "]