Release v0.14.2

This commit is contained in:
Emilio Cobos Álvarez 2020-05-01 00:48:26 +02:00
parent a05a223704
commit b6b88f8c30
No known key found for this signature in database
GPG Key ID: E1152D0994E4BF8A
3 changed files with 12 additions and 2 deletions

10
CHANGES
View File

@ -1,3 +1,13 @@
## 0.14.2
* Fixed minimal dependency versions. (#507)
* Add an option to write pragma once. (#511)
* Fix submodule scanning for implicit Rust 2018 modules. (#512)
* Fix dependency parsing / scanning to handle target-specific versions. (#513)
* Use heck for case conversion. (#514)
* Add support for verbatim content after includes. (#416)
* Allow to add attributes to most generated functions. (#515)
## 0.14.1
* Handle mangling pointers. (#508)

2
Cargo.lock generated
View File

@ -32,7 +32,7 @@ dependencies = [
[[package]]
name = "cbindgen"
version = "0.14.1"
version = "0.14.2"
dependencies = [
"clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)",
"heck 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",

View File

@ -1,6 +1,6 @@
[package]
name = "cbindgen"
version = "0.14.1"
version = "0.14.2"
authors = ["Jeff Muizelaar <jmuizelaar@mozilla.com>",
"Kartikaya Gupta <kats@mozilla.com>",
"Ryan Hunt <rhunt@eqrion.net>"]