File tree Expand file tree Collapse file tree 4 files changed +23
-4
lines changed Expand file tree Collapse file tree 4 files changed +23
-4
lines changed Original file line number Diff line number Diff 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
110129Released 2019/05/22
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ readme = "README.md"
1414repository = " https://github.com/rust-lang/rust-bindgen"
1515documentation = " https://docs.rs/bindgen"
1616homepage = " https://rust-lang.github.io/rust-bindgen/"
17- version = " 0.49.2 "
17+ version = " 0.49.3 "
1818build = " build.rs"
1919
2020include = [
Original file line number Diff line number Diff line change @@ -4,12 +4,12 @@ First we need to declare a build-time dependency on `bindgen` by adding it to
44the ` [build-dependencies] ` section of our crate's ` Cargo.toml ` file.
55
66Please 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
88you can always check [ the bindgen page of
99crates.io] ( https://crates.io/crates/bindgen ) to verify the latest version if
1010you're unsure.
1111
1212``` toml
1313[build-dependencies ]
14- bindgen = " 0.49.2 "
14+ bindgen = " 0.49"
1515```
You can’t perform that action at this time.
0 commit comments