summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEmilio Cobos Álvarez <emilio@crisal.io>2019-05-22 15:38:54 +0200
committerEmilio Cobos Álvarez <emilio@crisal.io>2019-05-22 15:38:54 +0200
commit5eefef7dcaaac45486224954c006e17ad0d24547 (patch)
tree70021f6d2bcc5c187636bf9a8d8b9f8a6a3be20a
parentfe9bea0f1bedd73c9bcc4d5cf625660e313997ab (diff)
Bump version.v0.49.2
-rw-r--r--CHANGELOG.md39
-rw-r--r--Cargo.lock2
-rw-r--r--Cargo.toml2
3 files changed, 29 insertions, 14 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 8a143a33..2e13a215 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -9,38 +9,40 @@
- [Removed](#removed)
- [Fixed](#fixed)
- [Security](#security)
+- [0.49.2](#0492)
+ - [Changed](#changed-1)
- [0.49.1](#0491)
- [Fixed](#fixed-1)
- - [Changed](#changed-1)
+ - [Changed](#changed-2)
- [0.49.0](#0490)
- [Added](#added-1)
- [Fixed](#fixed-2)
- - [Changed](#changed-2)
+ - [Changed](#changed-3)
- [0.48.1](#0481)
- [Fixed](#fixed-3)
- [0.48.0](#0480)
- - [Changed](#changed-3)
+ - [Changed](#changed-4)
- [Fixed](#fixed-4)
- [0.47.3](#0473)
- - [Changed](#changed-4)
+ - [Changed](#changed-5)
- [0.47.2](#0472)
- [Fixed](#fixed-5)
- [0.47.1](#0471)
- - [Changed](#changed-5)
+ - [Changed](#changed-6)
- [Fixed](#fixed-6)
- [0.47.0](#0470)
- - [Changed](#changed-6)
+ - [Changed](#changed-7)
- [Fixed](#fixed-7)
- [0.33.1 .. 0.46.0](#0331--0460)
- [Added](#added-2)
- [Removed](#removed-1)
- - [Changed](#changed-7)
+ - [Changed](#changed-8)
- [Fixed](#fixed-8)
- [0.33.1](#0331)
- [Fixed](#fixed-9)
- [0.33.0](#0330)
- [Added](#added-3)
- - [Changed](#changed-8)
+ - [Changed](#changed-9)
- [Deprecated](#deprecated-1)
- [Removed](#removed-2)
- [Fixed](#fixed-10)
@@ -51,22 +53,22 @@
- [Fixed](#fixed-12)
- [0.32.0](#0320)
- [Added](#added-4)
- - [Changed](#changed-9)
+ - [Changed](#changed-10)
- [Fixed](#fixed-13)
- [0.31.0](#0310)
- [Added](#added-5)
- - [Changed](#changed-10)
+ - [Changed](#changed-11)
- [Deprecated](#deprecated-2)
- [Removed](#removed-3)
- [Fixed](#fixed-14)
- [0.30.0](#0300)
- [Added](#added-6)
- - [Changed](#changed-11)
+ - [Changed](#changed-12)
- [Deprecated](#deprecated-3)
- [Fixed](#fixed-15)
- [0.29.0](#0290)
- [Added](#added-7)
- - [Changed](#changed-12)
+ - [Changed](#changed-13)
- [Fixed](#fixed-16)
<!-- END doctoc generated TOC please keep comment here to allow auto update -->
@@ -103,6 +105,19 @@ Released YYYY/MM/DD
--------------------------------------------------------------------------------
+# 0.49.2
+
+Released 2019/05/22
+
+## Changed
+
+* Bindgen now has an option to generate array arguments as pointer to the array,
+ not to the element (so `void foo(int arr[2])` would be generated as
+ `arr: *mut [c_int; 2]` rather than `arr: *mut c_int`. Thanks @elichai!
+ [#1564][].
+
+[#1564]: https://github.com/rust-lang/rust-bindgen/issues/1564
+
# 0.49.1
Released 2019/05/16
diff --git a/Cargo.lock b/Cargo.lock
index 2c9c6c2c..6d888b02 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -49,7 +49,7 @@ dependencies = [
[[package]]
name = "bindgen"
-version = "0.49.1"
+version = "0.49.2"
dependencies = [
"bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)",
"cexpr 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)",
diff --git a/Cargo.toml b/Cargo.toml
index 8cdd5e95..82e0fb09 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.49.1"
+version = "0.49.2"
build = "build.rs"
include = [