diff options
-rw-r--r-- | CHANGELOG.md | 17 | ||||
-rw-r--r-- | Cargo.lock | 2 | ||||
-rw-r--r-- | Cargo.toml | 2 |
3 files changed, 19 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 8eed4d13..7532e5e6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -132,6 +132,23 @@ --- +# 0.57.0 + +Released 2020/02/01 + +# Added + +* Expose module-raw-lines to the CLI (#1936) +* Added an option to fit macro constants to smaller types (#1945) +* Add an option to respect C++ access specifiers on fields (#1968) + +## Fixed + +* Improved C++ auto-detection (#1933) +* Fixed layout of bitfields in some edge cases (#1950) +* Escape the dyn keyword properly (#1951) +* Use absolute paths for unsaved files passed to clang (#1857). + # 0.56.0 Released 2020/11/26 @@ -31,7 +31,7 @@ dependencies = [ [[package]] name = "bindgen" -version = "0.56.0" +version = "0.57.0" dependencies = [ "bitflags", "cexpr", @@ -14,7 +14,7 @@ readme = "README.md" repository = "https://github.com/rust-lang/rust-bindgen" documentation = "https://docs.rs/bindgen" homepage = "https://rust-lang.github.io/rust-bindgen/" -version = "0.56.0" +version = "0.57.0" edition = "2018" build = "build.rs" |