summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEmilio Cobos Álvarez <emilio@crisal.io>2020-07-06 19:13:11 +0200
committerEmilio Cobos Álvarez <emilio@crisal.io>2020-07-06 19:17:12 +0200
commitf94036fd18eefee801b3e99c564b2b0bc1a81218 (patch)
tree4d9ef1846b534e9b6a1521bbb20ea9d53bb85734
parent17b6ae835e94b2537ac0513a848705fe8f5614af (diff)
Release v0.54.1v0.54.1
-rw-r--r--CHANGELOG.md34
-rw-r--r--Cargo.lock2
-rw-r--r--Cargo.toml2
3 files changed, 36 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 1a371f05..279ba09c 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -135,6 +135,40 @@ Released YYYY/MM/DD
--------------------------------------------------------------------------------
+# 0.54.1
+
+Released 2020/07/06.
+
+## Added
+
+ * Added ParseCallbacks::func_macro to be able to process function-like macros.
+ (#1792).
+
+ * Allowed IntKind::Custom to represent paths instead of idents (#1800).
+
+## Changed
+
+ * Generated comment now includes the bindgen version, and can be disabled
+ (#1814).
+
+ * Various documentation improvements.
+
+## Fixed
+
+ * Typedefs for types with the same names as rust primitive types compiles
+ (#1798).
+
+ * Bindgen dependencies will now get rebuilt when various environment variables
+ that affect bindgen change (#1809, #1813).
+
+ * Various fixes to command_line_flags (#1816, #1819, #1821).
+
+ * Functions that start with `operator` now get properly generated (#1817).
+
+
+Thanks to all the awesome contributors that sent patches included in this
+release!
+
# 0.54.0
Released 2020/05/21.
diff --git a/Cargo.lock b/Cargo.lock
index 466c7b9e..554235ee 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -27,7 +27,7 @@ dependencies = [
[[package]]
name = "bindgen"
-version = "0.54.0"
+version = "0.54.1"
dependencies = [
"bitflags 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
"cexpr 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
diff --git a/Cargo.toml b/Cargo.toml
index da63ee5c..9d433534 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.54.0"
+version = "0.54.1"
edition = "2018"
build = "build.rs"