diff options
-rw-r--r-- | CHANGELOG.md | 13 | ||||
-rw-r--r-- | Cargo.lock | 2 | ||||
-rw-r--r-- | Cargo.toml | 2 |
3 files changed, 15 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index c4e13b26..f877dd58 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -63,6 +63,19 @@ Released YYYY/MM/DD -------------------------------------------------------------------------------- +# 0.32.1 + +Released 2017/12/18 + +## Fixed + +* When translating C/C++ `enum`s into Rust `enum`s using `rustified_enum` / + `--rustified-enum`, properly add `#[repr(C)]` to the emitted `enum`. [#1183][] + +[#1183]: https://github.com/rust-lang-nursery/rust-bindgen/issues/1183 + +-------------------------------------------------------------------------------- + # 0.32.0 Released 2017/12/08 @@ -23,7 +23,7 @@ dependencies = [ [[package]] name = "bindgen" -version = "0.32.0" +version = "0.32.1" dependencies = [ "cexpr 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "cfg-if 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -13,7 +13,7 @@ name = "bindgen" readme = "README.md" repository = "https://github.com/rust-lang-nursery/rust-bindgen" documentation = "https://docs.rs/bindgen" -version = "0.32.0" +version = "0.32.1" build = "build.rs" include = [ |