File tree 4 files changed +38
-12
lines changed
4 files changed +38
-12
lines changed Original file line number Diff line number Diff line change 9
9
- [ Removed] ( #removed )
10
10
- [ Fixed] ( #fixed )
11
11
- [ Security] ( #security )
12
+ - [ 0.50.0] ( #0500 )
13
+ - [ Added] ( #added-1 )
14
+ - [ 0.49.3] ( #0493 )
15
+ - [ Added] ( #added-2 )
12
16
- [ 0.49.2] ( #0492 )
13
17
- [ Changed] ( #changed-1 )
14
18
- [ 0.49.1] ( #0491 )
15
19
- [ Fixed] ( #fixed-1 )
16
20
- [ Changed] ( #changed-2 )
17
21
- [ 0.49.0] ( #0490 )
18
- - [ Added] ( #added-1 )
22
+ - [ Added] ( #added-3 )
19
23
- [ Fixed] ( #fixed-2 )
20
24
- [ Changed] ( #changed-3 )
21
25
- [ 0.48.1] ( #0481 )
34
38
- [ Changed] ( #changed-7 )
35
39
- [ Fixed] ( #fixed-7 )
36
40
- [ 0.33.1 .. 0.46.0] ( #0331--0460 )
37
- - [ Added] ( #added-2 )
41
+ - [ Added] ( #added-4 )
38
42
- [ Removed] ( #removed-1 )
39
43
- [ Changed] ( #changed-8 )
40
44
- [ Fixed] ( #fixed-8 )
41
45
- [ 0.33.1] ( #0331 )
42
46
- [ Fixed] ( #fixed-9 )
43
47
- [ 0.33.0] ( #0330 )
44
- - [ Added] ( #added-3 )
48
+ - [ Added] ( #added-5 )
45
49
- [ Changed] ( #changed-9 )
46
50
- [ Deprecated] ( #deprecated-1 )
47
51
- [ Removed] ( #removed-2 )
52
56
- [ 0.32.1] ( #0321 )
53
57
- [ Fixed] ( #fixed-12 )
54
58
- [ 0.32.0] ( #0320 )
55
- - [ Added] ( #added-4 )
59
+ - [ Added] ( #added-6 )
56
60
- [ Changed] ( #changed-10 )
57
61
- [ Fixed] ( #fixed-13 )
58
62
- [ 0.31.0] ( #0310 )
59
- - [ Added] ( #added-5 )
63
+ - [ Added] ( #added-7 )
60
64
- [ Changed] ( #changed-11 )
61
65
- [ Deprecated] ( #deprecated-2 )
62
66
- [ Removed] ( #removed-3 )
63
67
- [ Fixed] ( #fixed-14 )
64
68
- [ 0.30.0] ( #0300 )
65
- - [ Added] ( #added-6 )
69
+ - [ Added] ( #added-8 )
66
70
- [ Changed] ( #changed-12 )
67
71
- [ Deprecated] ( #deprecated-3 )
68
72
- [ Fixed] ( #fixed-15 )
69
73
- [ 0.29.0] ( #0290 )
70
- - [ Added] ( #added-7 )
74
+ - [ Added] ( #added-9 )
71
75
- [ Changed] ( #changed-13 )
72
76
- [ Fixed] ( #fixed-16 )
73
77
@@ -105,9 +109,31 @@ Released YYYY/MM/DD
105
109
106
110
--------------------------------------------------------------------------------
107
111
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
+
108
134
# 0.49.3
109
135
110
- Released 2019/06/25
136
+ Released 2019/06/25. ** YANKED **
111
137
112
138
## Added
113
139
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.3 "
17
+ version = " 0.50.0 "
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.3 ` , but
7
+ best compatibility. At the time of writing the latest bindgen is ` 0.50.0 ` , 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 "
14
+ bindgen = " 0.50 "
15
15
```
You can’t perform that action at this time.
0 commit comments