Release v0.12.1

This commit is contained in:
Emilio Cobos Álvarez 2019-12-30 00:52:53 +01:00
parent f03252cffc
commit f5d76c44c4
No known key found for this signature in database
GPG Key ID: E1152D0994E4BF8A
3 changed files with 8 additions and 2 deletions

View File

@ -1,3 +1,9 @@
## 0.12.1
* Added support for #[repr*64)] on enums. https://github.com/eqrion/cbindgen/pull/441
* Added support to generate plain enums instead of enum classes for C++. https://github.com/eqrion/cbindgen/pull/443
* Fixed dependency resolution with lockfile v2. https://github.com/eqrion/cbindgen/pull/438
## 0.12.0
* Added support for #[repr(align)] and #[repr(packed)] on structs and unions. https://github.com/eqrion/cbindgen/pull/431

2
Cargo.lock generated
View File

@ -32,7 +32,7 @@ dependencies = [
[[package]]
name = "cbindgen"
version = "0.12.0"
version = "0.12.1"
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)",

View File

@ -1,6 +1,6 @@
[package]
name = "cbindgen"
version = "0.12.0"
version = "0.12.1"
authors = ["Jeff Muizelaar <jmuizelaar@mozilla.com>",
"Kartikaya Gupta <kats@mozilla.com>",
"Ryan Hunt <rhunt@eqrion.net>"]