summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEmilio Cobos Álvarez <emilio@crisal.io>2021-02-01 14:05:43 +0100
committerEmilio Cobos Álvarez <emilio@crisal.io>2021-02-01 14:06:00 +0100
commit5ca2fc7a0221cacde41fd60b0ce485ee5ab8dac3 (patch)
treee6c38bed64be9db72117cef3e5fd6852e9d6a7bd
parentc509ef12acd198ffdde2af02148002257b60912a (diff)
v0.57.0v0.57.0
-rw-r--r--CHANGELOG.md17
-rw-r--r--Cargo.lock2
-rw-r--r--Cargo.toml2
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
diff --git a/Cargo.lock b/Cargo.lock
index 589076f2..7e09431d 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -31,7 +31,7 @@ dependencies = [
[[package]]
name = "bindgen"
-version = "0.56.0"
+version = "0.57.0"
dependencies = [
"bitflags",
"cexpr",
diff --git a/Cargo.toml b/Cargo.toml
index 3516fc25..4f8ac75d 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -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"