From 4fc533190ae771039fa5b4546767a06cbd6b502e Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Mon, 27 Apr 2020 17:10:39 -0700 Subject: [PATCH] Release 0.2.12 --- Cargo.toml | 4 ++-- cmd/Cargo.toml | 2 +- macro/Cargo.toml | 2 +- src/lib.rs | 2 +- third-party/Cargo.lock | 6 +++--- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 1d6ede2d1..a47a8421c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cxx" -version = "0.2.11" # remember to update html_root_url +version = "0.2.12" # remember to update html_root_url authors = ["David Tolnay "] edition = "2018" links = "cxxbridge02" @@ -18,7 +18,7 @@ travis-ci = { repository = "dtolnay/cxx" } anyhow = "1.0" cc = "1.0.49" codespan-reporting = "0.9" -cxxbridge-macro = { version = "=0.2.11", path = "macro" } +cxxbridge-macro = { version = "=0.2.12", path = "macro" } link-cplusplus = "1.0" proc-macro2 = { version = "1.0", features = ["span-locations"] } quote = "1.0" diff --git a/cmd/Cargo.toml b/cmd/Cargo.toml index 92184780d..742d54b5b 100644 --- a/cmd/Cargo.toml +++ b/cmd/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cxxbridge-cmd" -version = "0.2.11" +version = "0.2.12" authors = ["David Tolnay "] edition = "2018" license = "MIT OR Apache-2.0" diff --git a/macro/Cargo.toml b/macro/Cargo.toml index 1dd11f505..82401eeff 100644 --- a/macro/Cargo.toml +++ b/macro/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cxxbridge-macro" -version = "0.2.11" +version = "0.2.12" authors = ["David Tolnay "] edition = "2018" license = "MIT OR Apache-2.0" diff --git a/src/lib.rs b/src/lib.rs index 0e724e1cb..cff1e88df 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -337,7 +337,7 @@ //! //! [https://github.com/dtolnay/cxx]: https://github.com/dtolnay/cxx -#![doc(html_root_url = "https://docs.rs/cxx/0.2.11")] +#![doc(html_root_url = "https://docs.rs/cxx/0.2.12")] #![deny(improper_ctypes)] #![allow( clippy::cognitive_complexity, diff --git a/third-party/Cargo.lock b/third-party/Cargo.lock index 70ae2ccbb..0bd470b9b 100644 --- a/third-party/Cargo.lock +++ b/third-party/Cargo.lock @@ -65,7 +65,7 @@ dependencies = [ [[package]] name = "cxx" -version = "0.2.11" +version = "0.2.12" dependencies = [ "anyhow", "cc", @@ -89,7 +89,7 @@ dependencies = [ [[package]] name = "cxxbridge-cmd" -version = "0.2.11" +version = "0.2.12" dependencies = [ "anyhow", "codespan-reporting", @@ -108,7 +108,7 @@ dependencies = [ [[package]] name = "cxxbridge-macro" -version = "0.2.11" +version = "0.2.12" dependencies = [ "cxx", "proc-macro2",