Release 0.13.1.

* Support #[cfg] on individual enum variants. (#469)
This commit is contained in:
Emilio Cobos Álvarez 2020-02-09 15:47:24 +01:00
parent 5c2fab7919
commit 3b97f4ff6b
No known key found for this signature in database
GPG Key ID: E1152D0994E4BF8A
3 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
## 0.13.1
* Support `#[cfg]` on individual enum variants. (#469)
## 0.13.0
* Support 'swift_name' attributes on generated functions (#449)

2
Cargo.lock generated
View File

@ -32,7 +32,7 @@ dependencies = [
[[package]]
name = "cbindgen"
version = "0.13.0"
version = "0.13.1"
dependencies = [
"clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)",
"log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",

View File

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