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
105
105
106
106
--------------------------------------------------------------------------------
107
107
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
+
108
127
# 0.49.2
109
128
110
129
Released 2019/05/22
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ readme = "README.md"
14
14
repository = " https://github.com/rust-lang/rust-bindgen"
15
15
documentation = " https://docs.rs/bindgen"
16
16
homepage = " https://rust-lang.github.io/rust-bindgen/"
17
- version = " 0.49.2 "
17
+ version = " 0.49.3 "
18
18
build = " build.rs"
19
19
20
20
include = [
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
4
4
the ` [build-dependencies] ` section of our crate's ` Cargo.toml ` file.
5
5
6
6
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
8
8
you can always check [ the bindgen page of
9
9
crates.io] ( https://crates.io/crates/bindgen ) to verify the latest version if
10
10
you're unsure.
11
11
12
12
``` toml
13
13
[build-dependencies ]
14
- bindgen = " 0.49.2 "
14
+ bindgen = " 0.49"
15
15
```
You can’t perform that action at this time.
0 commit comments