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 "]