Skip to content

Prepare to release 0.65.1 #2496

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Apr 10, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 17 additions & 16 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,20 +7,19 @@
- [Removed](#removed)
- [Fixed](#fixed)
- [Security](#security)
- [0.65.1](#0651)
- [Fixed](#fixed-1)
- [0.65.0](#0650)
- [Added](#added-1)
- [Changed](#changed-1)
- [Removed](#removed-1)
- [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)
Expand All @@ -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)
Expand All @@ -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)
Expand All @@ -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)
Expand Down Expand Up @@ -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)
Expand All @@ -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)
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions bindgen-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand All @@ -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 }
Expand Down
2 changes: 1 addition & 1 deletion bindgen/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down