Skip to content
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

Release 0.49.0. #1545

Merged
merged 3 commits into from
Mar 27, 2019
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
89 changes: 61 additions & 28 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,56 +9,62 @@
- [Removed](#removed)
- [Fixed](#fixed)
- [Security](#security)
- [0.48.0](#0480)
- [Changed](#changed-1)
- [0.49.0](#0490)
- [Added](#added-1)
- [Fixed](#fixed-1)
- [0.47.3](#0473)
- [Changed](#changed-1)
- [0.48.1](#0481)
- [Fixed](#fixed-2)
- [0.48.0](#0480)
- [Changed](#changed-2)
- [Fixed](#fixed-3)
- [0.47.3](#0473)
- [Changed](#changed-3)
- [0.47.2](#0472)
- [Fixed](#fixed-2)
- [Fixed](#fixed-4)
- [0.47.1](#0471)
- [Changed](#changed-3)
- [Fixed](#fixed-3)
- [0.47.0](#0470)
- [Changed](#changed-4)
- [Fixed](#fixed-4)
- [0.33.1 .. 0.46.0](#0331--0460)
- [Added](#added-1)
- [Removed](#removed-1)
- [Changed](#changed-5)
- [Fixed](#fixed-5)
- [0.33.1](#0331)
- [0.47.0](#0470)
- [Changed](#changed-5)
- [Fixed](#fixed-6)
- [0.33.0](#0330)
- [0.33.1 .. 0.46.0](#0331--0460)
- [Added](#added-2)
- [Removed](#removed-1)
- [Changed](#changed-6)
- [Fixed](#fixed-7)
- [0.33.1](#0331)
- [Fixed](#fixed-8)
- [0.33.0](#0330)
- [Added](#added-3)
- [Changed](#changed-7)
- [Deprecated](#deprecated-1)
- [Removed](#removed-2)
- [Fixed](#fixed-7)
- [Fixed](#fixed-9)
- [Security](#security-1)
- [0.32.2](#0322)
- [Fixed](#fixed-8)
- [Fixed](#fixed-10)
- [0.32.1](#0321)
- [Fixed](#fixed-9)
- [Fixed](#fixed-11)
- [0.32.0](#0320)
- [Added](#added-3)
- [Changed](#changed-7)
- [Fixed](#fixed-10)
- [0.31.0](#0310)
- [Added](#added-4)
- [Changed](#changed-8)
- [Fixed](#fixed-12)
- [0.31.0](#0310)
- [Added](#added-5)
- [Changed](#changed-9)
- [Deprecated](#deprecated-2)
- [Removed](#removed-3)
- [Fixed](#fixed-11)
- [Fixed](#fixed-13)
- [0.30.0](#0300)
- [Added](#added-5)
- [Changed](#changed-9)
- [Deprecated](#deprecated-3)
- [Fixed](#fixed-12)
- [0.29.0](#0290)
- [Added](#added-6)
- [Changed](#changed-10)
- [Fixed](#fixed-13)
- [Deprecated](#deprecated-3)
- [Fixed](#fixed-14)
- [0.29.0](#0290)
- [Added](#added-7)
- [Changed](#changed-11)
- [Fixed](#fixed-15)

<!-- END doctoc generated TOC please keep comment here to allow auto update -->

Expand Down Expand Up @@ -94,6 +100,33 @@ Released YYYY/MM/DD

--------------------------------------------------------------------------------

# 0.49.0

Released 2019/03/27

## Added

* BINDGEN_EXTRA_CLANG_ARGS environment variable was added (thanks @jhwgh1968!). [#1537][]

## Fixed

* Bindgen will properly name parameters inside nested function pointer
declarations (thanks @flowbish!). [#1535][]

## Changed

* Derive code was greatly improved by @jethrogb. [#1540][]
* Derive analysis now handles trivial types more gracefully. [#1492][]
* clang-sys was updated by @eclipseo. [#1539][]
* bindgen should now get include paths correctly even when `--target` is
specified. The `detect_include_paths` option can be used to opt-out of this
behavior.

[#1535]: https://github.com/rust-lang-nursery/rust-bindgen/issues/1535
[#1537]: https://github.com/rust-lang-nursery/rust-bindgen/issues/1537
[#1540]: https://github.com/rust-lang-nursery/rust-bindgen/issues/1540
[#1492]: https://github.com/rust-lang-nursery/rust-bindgen/issues/1492

# 0.48.1

Released 2019/03/06
Expand Down
8 changes: 4 additions & 4 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 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.48.1"
version = "0.49.0"
build = "build.rs"

include = [
Expand Down Expand Up @@ -48,7 +48,7 @@ cexpr = "0.3.3"
cfg-if = "0.1.0"
# This kinda sucks: https://github.com/rust-lang/cargo/issues/1982
clap = "2"
clang-sys = { version = "0.26.4", features = ["runtime", "clang_6_0"] }
clang-sys = { version = "0.28.0", features = ["runtime", "clang_6_0"] }
lazy_static = "1"
peeking_take_while = "0.1.2"
quote = { version = "0.6", default-features = false }
Expand Down