Skip to content

Commit 7d24305

Browse files
authored
Prepare to release 0.65.1 (#2496)
* Bump versions * Update changelog
1 parent d9996ab commit 7d24305

File tree

4 files changed

+22
-21
lines changed

4 files changed

+22
-21
lines changed

CHANGELOG.md

+17-16
Original file line numberDiff line numberDiff line change
@@ -7,20 +7,19 @@
77
- [Removed](#removed)
88
- [Fixed](#fixed)
99
- [Security](#security)
10+
- [0.65.1](#0651)
11+
- [Fixed](#fixed-1)
1012
- [0.65.0](#0650)
1113
- [Added](#added-1)
1214
- [Changed](#changed-1)
1315
- [Removed](#removed-1)
1416
- [0.64.0](#0640)
1517
- [Added](#added-2)
1618
- [Changed](#changed-2)
17-
- [Removed](#removed-2)
18-
- [Fixed](#fixed-1)
19-
- [Security](#security-1)
2019
- [0.63.0](#0630)
2120
- [Added](#added-3)
2221
- [Changed](#changed-3)
23-
- [Removed](#removed-3)
22+
- [Removed](#removed-2)
2423
- [0.62.0](#0620)
2524
- [Added](#added-4)
2625
- [Changed](#changed-4)
@@ -35,7 +34,7 @@
3534
- [Added](#added-6)
3635
- [Fixed](#fixed-5)
3736
- [Changed](#changed-6)
38-
- [Removed](#removed-4)
37+
- [Removed](#removed-3)
3938
- [0.59.2](#0592)
4039
- [0.59.1](#0591)
4140
- [Fixed](#fixed-6)
@@ -50,9 +49,9 @@
5049
- [Fixed](#fixed-8)
5150
- [Changed](#changed-8)
5251
- [Deprecated](#deprecated)
53-
- [Removed](#removed-5)
52+
- [Removed](#removed-4)
5453
- [Fixed](#fixed-9)
55-
- [Security](#security-2)
54+
- [Security](#security-1)
5655
- [0.57.0](#0570)
5756
- [Added](#added-10)
5857
- [Fixed](#fixed-10)
@@ -63,7 +62,7 @@
6362
- [0.55.1](#0551)
6463
- [Fixed](#fixed-12)
6564
- [0.55.0](#0550)
66-
- [Removed](#removed-6)
65+
- [Removed](#removed-5)
6766
- [Added](#added-12)
6867
- [Changed](#changed-10)
6968
- [Fixed](#fixed-13)
@@ -129,7 +128,7 @@
129128
- [Fixed](#fixed-27)
130129
- [0.33.1 .. 0.46.0](#0331--0460)
131130
- [Added](#added-24)
132-
- [Removed](#removed-7)
131+
- [Removed](#removed-6)
133132
- [Changed](#changed-25)
134133
- [Fixed](#fixed-28)
135134
- [0.33.1](#0331)
@@ -147,7 +146,7 @@
147146
- [Added](#added-26)
148147
- [Changed](#changed-27)
149148
- [Deprecated](#deprecated-1)
150-
- [Removed](#removed-8)
149+
- [Removed](#removed-7)
151150
- [Fixed](#fixed-33)
152151
- [0.30.0](#0300)
153152
- [Added](#added-27)
@@ -175,6 +174,14 @@
175174

176175
## Security
177176

177+
# 0.65.1
178+
179+
## Fixed
180+
181+
* The `Builder::rustfmt_bindings` method was added back and tagged as
182+
deprecated instead of being removed.
183+
* Broken documentation links were fixed.
184+
178185
# 0.65.0
179186

180187
## Added
@@ -247,12 +254,6 @@
247254
* The `ParseCallbacks::add_derives` method now receives `DeriveInfo<'_>` as
248255
argument instead of a `&str`. This type also includes the kind of target type.
249256

250-
## Removed
251-
252-
## Fixed
253-
254-
## Security
255-
256257
# 0.63.0
257258

258259
## Added

Cargo.lock

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

bindgen-cli/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ readme = "../README.md"
1111
repository = "https://github.com/rust-lang/rust-bindgen"
1212
documentation = "https://docs.rs/bindgen"
1313
homepage = "https://rust-lang.github.io/rust-bindgen/"
14-
version = "0.65.0"
14+
version = "0.65.1"
1515
edition = "2018"
1616
rust-version = "1.64.0"
1717

@@ -20,7 +20,7 @@ path = "main.rs"
2020
name = "bindgen"
2121

2222
[dependencies]
23-
bindgen = { path = "../bindgen", version = "=0.65.0", features = ["__cli", "experimental"] }
23+
bindgen = { path = "../bindgen", version = "=0.65.1", features = ["__cli", "experimental"] }
2424
shlex = "1"
2525
clap = { version = "4", features = ["derive"] }
2626
env_logger = { version = "0.10.0", optional = true }

bindgen/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.65.0"
17+
version = "0.65.1"
1818
edition = "2018"
1919
build = "build.rs"
2020
# If you change this, also update README.md and msrv in .github/workflows/bindgen.yml

0 commit comments

Comments
 (0)