From 0355c3c0315e22cd91e7ef35913247347bc7b73b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Emilio=20Cobos=20=C3=81lvarez?= Date: Wed, 4 Dec 2019 00:05:11 +0100 Subject: [PATCH] v0.11.0 * Made rust char map to uint32_t. https://github.com/eqrion/cbindgen/pull/424 --- CHANGES | 4 ++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGES b/CHANGES index 763099c..9037696 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,7 @@ +## 0.11.0 + + * Made rust char map to uint32_t. https://github.com/eqrion/cbindgen/pull/424 + ## 0.10.1 * Improved error message for missing config file. https://github.com/eqrion/cbindgen/pull/422 diff --git a/Cargo.lock b/Cargo.lock index f0b0fc5..9487c65 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -30,7 +30,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "cbindgen" -version = "0.10.1" +version = "0.11.0" dependencies = [ "clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/Cargo.toml b/Cargo.toml index 240afa7..b18649d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cbindgen" -version = "0.10.1" +version = "0.11.0" authors = ["Jeff Muizelaar ", "Kartikaya Gupta ", "Ryan Hunt "]