Release 0.14.3

This commit is contained in:
Emilio Cobos Álvarez 2020-06-24 17:18:53 +02:00
parent ce28fd7c8a
commit cc2876f709
No known key found for this signature in database
GPG Key ID: E1152D0994E4BF8A
3 changed files with 9 additions and 2 deletions

View File

@ -1,3 +1,10 @@
## 0.14.3
* Introduce cbindgen:ignore comment annotation, to allow ignoring items or modules. (#519)
* Support for casts in constant expressions. (#526)
* Make a non-fatal error a warning message. (#535)
* Add a --metadata option to the CLI, to allow passing pre-computed cargo metadata. (#538)
## 0.14.2
* Fixed minimal dependency versions. (#507)

2
Cargo.lock generated
View File

@ -32,7 +32,7 @@ dependencies = [
[[package]]
name = "cbindgen"
version = "0.14.2"
version = "0.14.3"
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.2"
version = "0.14.3"
authors = ["Jeff Muizelaar <jmuizelaar@mozilla.com>",
"Kartikaya Gupta <kats@mozilla.com>",
"Ryan Hunt <rhunt@eqrion.net>"]