Skip to content

Commit 5eefef7

Browse files
committed
Bump version.
1 parent fe9bea0 commit 5eefef7

File tree

3 files changed

+29
-14
lines changed

3 files changed

+29
-14
lines changed

CHANGELOG.md

Lines changed: 27 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -9,38 +9,40 @@
99
- [Removed](#removed)
1010
- [Fixed](#fixed)
1111
- [Security](#security)
12+
- [0.49.2](#0492)
13+
- [Changed](#changed-1)
1214
- [0.49.1](#0491)
1315
- [Fixed](#fixed-1)
14-
- [Changed](#changed-1)
16+
- [Changed](#changed-2)
1517
- [0.49.0](#0490)
1618
- [Added](#added-1)
1719
- [Fixed](#fixed-2)
18-
- [Changed](#changed-2)
20+
- [Changed](#changed-3)
1921
- [0.48.1](#0481)
2022
- [Fixed](#fixed-3)
2123
- [0.48.0](#0480)
22-
- [Changed](#changed-3)
24+
- [Changed](#changed-4)
2325
- [Fixed](#fixed-4)
2426
- [0.47.3](#0473)
25-
- [Changed](#changed-4)
27+
- [Changed](#changed-5)
2628
- [0.47.2](#0472)
2729
- [Fixed](#fixed-5)
2830
- [0.47.1](#0471)
29-
- [Changed](#changed-5)
31+
- [Changed](#changed-6)
3032
- [Fixed](#fixed-6)
3133
- [0.47.0](#0470)
32-
- [Changed](#changed-6)
34+
- [Changed](#changed-7)
3335
- [Fixed](#fixed-7)
3436
- [0.33.1 .. 0.46.0](#0331--0460)
3537
- [Added](#added-2)
3638
- [Removed](#removed-1)
37-
- [Changed](#changed-7)
39+
- [Changed](#changed-8)
3840
- [Fixed](#fixed-8)
3941
- [0.33.1](#0331)
4042
- [Fixed](#fixed-9)
4143
- [0.33.0](#0330)
4244
- [Added](#added-3)
43-
- [Changed](#changed-8)
45+
- [Changed](#changed-9)
4446
- [Deprecated](#deprecated-1)
4547
- [Removed](#removed-2)
4648
- [Fixed](#fixed-10)
@@ -51,22 +53,22 @@
5153
- [Fixed](#fixed-12)
5254
- [0.32.0](#0320)
5355
- [Added](#added-4)
54-
- [Changed](#changed-9)
56+
- [Changed](#changed-10)
5557
- [Fixed](#fixed-13)
5658
- [0.31.0](#0310)
5759
- [Added](#added-5)
58-
- [Changed](#changed-10)
60+
- [Changed](#changed-11)
5961
- [Deprecated](#deprecated-2)
6062
- [Removed](#removed-3)
6163
- [Fixed](#fixed-14)
6264
- [0.30.0](#0300)
6365
- [Added](#added-6)
64-
- [Changed](#changed-11)
66+
- [Changed](#changed-12)
6567
- [Deprecated](#deprecated-3)
6668
- [Fixed](#fixed-15)
6769
- [0.29.0](#0290)
6870
- [Added](#added-7)
69-
- [Changed](#changed-12)
71+
- [Changed](#changed-13)
7072
- [Fixed](#fixed-16)
7173

7274
<!-- END doctoc generated TOC please keep comment here to allow auto update -->
@@ -103,6 +105,19 @@ Released YYYY/MM/DD
103105

104106
--------------------------------------------------------------------------------
105107

108+
# 0.49.2
109+
110+
Released 2019/05/22
111+
112+
## Changed
113+
114+
* Bindgen now has an option to generate array arguments as pointer to the array,
115+
not to the element (so `void foo(int arr[2])` would be generated as
116+
`arr: *mut [c_int; 2]` rather than `arr: *mut c_int`. Thanks @elichai!
117+
[#1564][].
118+
119+
[#1564]: https://github.com/rust-lang/rust-bindgen/issues/1564
120+
106121
# 0.49.1
107122

108123
Released 2019/05/16

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ readme = "README.md"
1414
repository = "https://github.com/rust-lang/rust-bindgen"
1515
documentation = "https://docs.rs/bindgen"
1616
homepage = "https://rust-lang.github.io/rust-bindgen/"
17-
version = "0.49.1"
17+
version = "0.49.2"
1818
build = "build.rs"
1919

2020
include = [

0 commit comments

Comments
 (0)