Skip to content

Commit d789817

Browse files
committed
Do a breaking version bump, yank 0.49.3
Fixes #1587
1 parent 231bce8 commit d789817

File tree

4 files changed

+38
-12
lines changed

4 files changed

+38
-12
lines changed

CHANGELOG.md

+34-8
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,17 @@
99
- [Removed](#removed)
1010
- [Fixed](#fixed)
1111
- [Security](#security)
12+
- [0.50.0](#0500)
13+
- [Added](#added-1)
14+
- [0.49.3](#0493)
15+
- [Added](#added-2)
1216
- [0.49.2](#0492)
1317
- [Changed](#changed-1)
1418
- [0.49.1](#0491)
1519
- [Fixed](#fixed-1)
1620
- [Changed](#changed-2)
1721
- [0.49.0](#0490)
18-
- [Added](#added-1)
22+
- [Added](#added-3)
1923
- [Fixed](#fixed-2)
2024
- [Changed](#changed-3)
2125
- [0.48.1](#0481)
@@ -34,14 +38,14 @@
3438
- [Changed](#changed-7)
3539
- [Fixed](#fixed-7)
3640
- [0.33.1 .. 0.46.0](#0331--0460)
37-
- [Added](#added-2)
41+
- [Added](#added-4)
3842
- [Removed](#removed-1)
3943
- [Changed](#changed-8)
4044
- [Fixed](#fixed-8)
4145
- [0.33.1](#0331)
4246
- [Fixed](#fixed-9)
4347
- [0.33.0](#0330)
44-
- [Added](#added-3)
48+
- [Added](#added-5)
4549
- [Changed](#changed-9)
4650
- [Deprecated](#deprecated-1)
4751
- [Removed](#removed-2)
@@ -52,22 +56,22 @@
5256
- [0.32.1](#0321)
5357
- [Fixed](#fixed-12)
5458
- [0.32.0](#0320)
55-
- [Added](#added-4)
59+
- [Added](#added-6)
5660
- [Changed](#changed-10)
5761
- [Fixed](#fixed-13)
5862
- [0.31.0](#0310)
59-
- [Added](#added-5)
63+
- [Added](#added-7)
6064
- [Changed](#changed-11)
6165
- [Deprecated](#deprecated-2)
6266
- [Removed](#removed-3)
6367
- [Fixed](#fixed-14)
6468
- [0.30.0](#0300)
65-
- [Added](#added-6)
69+
- [Added](#added-8)
6670
- [Changed](#changed-12)
6771
- [Deprecated](#deprecated-3)
6872
- [Fixed](#fixed-15)
6973
- [0.29.0](#0290)
70-
- [Added](#added-7)
74+
- [Added](#added-9)
7175
- [Changed](#changed-13)
7276
- [Fixed](#fixed-16)
7377

@@ -105,9 +109,31 @@ Released YYYY/MM/DD
105109

106110
--------------------------------------------------------------------------------
107111

112+
# 0.50.0
113+
114+
Released 2019/07/01.
115+
116+
## Added
117+
118+
* Fixed pointers to Objective C blocks [#1582][].
119+
120+
* Various bindgen auto-generated types are now constructible in `const fn`
121+
contexts [#1571][]
122+
123+
* It is possible to generate `#[non_exhaustive]` enums for rust nightly targets.
124+
[#1575][]
125+
126+
* It is possible to avoid building clap now if you're using bindgen as
127+
a library. [#1581][].
128+
129+
[#1571]: https://github.com/rust-lang/rust-bindgen/issues/1571
130+
[#1575]: https://github.com/rust-lang/rust-bindgen/issues/1575
131+
[#1581]: https://github.com/rust-lang/rust-bindgen/issues/1581
132+
[#1582]: https://github.com/rust-lang/rust-bindgen/issues/1582
133+
108134
# 0.49.3
109135

110-
Released 2019/06/25
136+
Released 2019/06/25. **YANKED**
111137

112138
## Added
113139

Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1-1
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.3"
17+
version = "0.50.0"
1818
build = "build.rs"
1919

2020
include = [

book/src/tutorial-1.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ First we need to declare a build-time dependency on `bindgen` by adding it to
44
the `[build-dependencies]` section of our crate's `Cargo.toml` file.
55

66
Please always use the latest version of `bindgen`, it has the most fixes and
7-
best compatibility. At the time of writing the latest bindgen is `0.49.3`, but
7+
best compatibility. At the time of writing the latest bindgen is `0.50.0`, but
88
you can always check [the bindgen page of
99
crates.io](https://crates.io/crates/bindgen) to verify the latest version if
1010
you're unsure.
1111

1212
```toml
1313
[build-dependencies]
14-
bindgen = "0.49"
14+
bindgen = "0.50"
1515
```

0 commit comments

Comments
 (0)