diff --git a/CHANGELOG.md b/CHANGELOG.md index 4c2dc0d986..aea2e321cc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ - [Removed](#removed) - [Fixed](#fixed) - [Security](#security) +- [0.65.1](#0651) + - [Fixed](#fixed-1) - [0.65.0](#0650) - [Added](#added-1) - [Changed](#changed-1) @@ -14,13 +16,10 @@ - [0.64.0](#0640) - [Added](#added-2) - [Changed](#changed-2) - - [Removed](#removed-2) - - [Fixed](#fixed-1) - - [Security](#security-1) - [0.63.0](#0630) - [Added](#added-3) - [Changed](#changed-3) - - [Removed](#removed-3) + - [Removed](#removed-2) - [0.62.0](#0620) - [Added](#added-4) - [Changed](#changed-4) @@ -35,7 +34,7 @@ - [Added](#added-6) - [Fixed](#fixed-5) - [Changed](#changed-6) - - [Removed](#removed-4) + - [Removed](#removed-3) - [0.59.2](#0592) - [0.59.1](#0591) - [Fixed](#fixed-6) @@ -50,9 +49,9 @@ - [Fixed](#fixed-8) - [Changed](#changed-8) - [Deprecated](#deprecated) - - [Removed](#removed-5) + - [Removed](#removed-4) - [Fixed](#fixed-9) - - [Security](#security-2) + - [Security](#security-1) - [0.57.0](#0570) - [Added](#added-10) - [Fixed](#fixed-10) @@ -63,7 +62,7 @@ - [0.55.1](#0551) - [Fixed](#fixed-12) - [0.55.0](#0550) - - [Removed](#removed-6) + - [Removed](#removed-5) - [Added](#added-12) - [Changed](#changed-10) - [Fixed](#fixed-13) @@ -129,7 +128,7 @@ - [Fixed](#fixed-27) - [0.33.1 .. 0.46.0](#0331--0460) - [Added](#added-24) - - [Removed](#removed-7) + - [Removed](#removed-6) - [Changed](#changed-25) - [Fixed](#fixed-28) - [0.33.1](#0331) @@ -147,7 +146,7 @@ - [Added](#added-26) - [Changed](#changed-27) - [Deprecated](#deprecated-1) - - [Removed](#removed-8) + - [Removed](#removed-7) - [Fixed](#fixed-33) - [0.30.0](#0300) - [Added](#added-27) @@ -175,6 +174,14 @@ ## Security +# 0.65.1 + +## Fixed + +* The `Builder::rustfmt_bindings` method was added back and tagged as + deprecated instead of being removed. +* Broken documentation links were fixed. + # 0.65.0 ## Added @@ -247,12 +254,6 @@ * The `ParseCallbacks::add_derives` method now receives `DeriveInfo<'_>` as argument instead of a `&str`. This type also includes the kind of target type. -## Removed - -## Fixed - -## Security - # 0.63.0 ## Added diff --git a/Cargo.lock b/Cargo.lock index 7ddfeb747f..7d8903d6ae 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -23,7 +23,7 @@ dependencies = [ [[package]] name = "bindgen" -version = "0.65.0" +version = "0.65.1" dependencies = [ "annotate-snippets", "bitflags", @@ -45,7 +45,7 @@ dependencies = [ [[package]] name = "bindgen-cli" -version = "0.65.0" +version = "0.65.1" dependencies = [ "bindgen", "clap", diff --git a/bindgen-cli/Cargo.toml b/bindgen-cli/Cargo.toml index fd211941d5..731f1bee1a 100644 --- a/bindgen-cli/Cargo.toml +++ b/bindgen-cli/Cargo.toml @@ -11,7 +11,7 @@ readme = "../README.md" repository = "https://github.com/rust-lang/rust-bindgen" documentation = "https://docs.rs/bindgen" homepage = "https://rust-lang.github.io/rust-bindgen/" -version = "0.65.0" +version = "0.65.1" edition = "2018" rust-version = "1.64.0" @@ -20,7 +20,7 @@ path = "main.rs" name = "bindgen" [dependencies] -bindgen = { path = "../bindgen", version = "=0.65.0", features = ["__cli", "experimental"] } +bindgen = { path = "../bindgen", version = "=0.65.1", features = ["__cli", "experimental"] } shlex = "1" clap = { version = "4", features = ["derive"] } env_logger = { version = "0.10.0", optional = true } diff --git a/bindgen/Cargo.toml b/bindgen/Cargo.toml index 2faa6fc68d..838524fd44 100644 --- a/bindgen/Cargo.toml +++ b/bindgen/Cargo.toml @@ -14,7 +14,7 @@ readme = "../README.md" repository = "https://github.com/rust-lang/rust-bindgen" documentation = "https://docs.rs/bindgen" homepage = "https://rust-lang.github.io/rust-bindgen/" -version = "0.65.0" +version = "0.65.1" edition = "2018" build = "build.rs" # If you change this, also update README.md and msrv in .github/workflows/bindgen.yml