Skip to content

Commit 231bce8

Browse files
committed
Bump bindgen version.
NOTE: For $REASONS (see #1587), this is not the actual commit that is tagged on the release.
1 parent dbe5bab commit 231bce8

File tree

4 files changed

+23
-4
lines changed

4 files changed

+23
-4
lines changed

CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,25 @@ Released YYYY/MM/DD
105105

106106
--------------------------------------------------------------------------------
107107

108+
# 0.49.3
109+
110+
Released 2019/06/25
111+
112+
## Added
113+
114+
* Various bindgen auto-generated types are now constructible in `const fn`
115+
contexts [#1571][]
116+
117+
* It is possible to generate `#[non_exhaustive]` enums for rust nightly targets.
118+
[#1575][]
119+
120+
* It is possible to avoid building clap now if you're using bindgen as
121+
a library. [#1581][].
122+
123+
[#1571]: https://github.com/rust-lang/rust-bindgen/issues/1571
124+
[#1575]: https://github.com/rust-lang/rust-bindgen/issues/1575
125+
[#1581]: https://github.com/rust-lang/rust-bindgen/issues/1581
126+
108127
# 0.49.2
109128

110129
Released 2019/05/22

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.2"
17+
version = "0.49.3"
1818
build = "build.rs"
1919

2020
include = [

book/src/tutorial-1.md

Lines changed: 2 additions & 2 deletions
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.2`, but
7+
best compatibility. At the time of writing the latest bindgen is `0.49.3`, 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.2"
14+
bindgen = "0.49"
1515
```

0 commit comments

Comments
 (0)