From e1bad0e708eeb1af01bfa06e38840246aec11fe5 Mon Sep 17 00:00:00 2001 From: Ryan Hunt Date: Thu, 24 Jan 2019 12:50:08 -0600 Subject: [PATCH] Release 0.7.0 * support for libc::ssize_t * fixed some warnings on nightly * fix for transparent associated constants * switched more API's to use AsRef * impl std::error::Error for cbindgen::Error * now support putting user-defined content in item bodies --- Cargo.lock | 2 +- Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 9b4820f..661420e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -23,7 +23,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "cbindgen" -version = "0.6.8" +version = "0.7.0" dependencies = [ "clap 2.31.2 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/Cargo.toml b/Cargo.toml index 8d02853..7ab6442 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cbindgen" -version = "0.6.8" +version = "0.7.0" authors = ["Jeff Muizelaar ", "Kartikaya Gupta ", "Ryan Hunt "]