From 7b4e6570154f6cb75e6a7c3677326330dd280a58 Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Sat, 25 Apr 2020 19:33:26 -0700 Subject: [PATCH] Release 0.2.11 --- 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 f497482b9..ad452fe46 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cxx" -version = "0.2.10" # remember to update html_root_url +version = "0.2.11" # 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.10", path = "macro" } +cxxbridge-macro = { version = "=0.2.11", 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 6ec328e54..e87e1cf69 100644 --- a/cmd/Cargo.toml +++ b/cmd/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cxxbridge-cmd" -version = "0.2.10" +version = "0.2.11" authors = ["David Tolnay "] edition = "2018" license = "MIT OR Apache-2.0" diff --git a/macro/Cargo.toml b/macro/Cargo.toml index ca0e32629..1dd11f505 100644 --- a/macro/Cargo.toml +++ b/macro/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cxxbridge-macro" -version = "0.2.10" +version = "0.2.11" authors = ["David Tolnay "] edition = "2018" license = "MIT OR Apache-2.0" diff --git a/src/lib.rs b/src/lib.rs index 51783dd2b..0e724e1cb 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.10")] +#![doc(html_root_url = "https://docs.rs/cxx/0.2.11")] #![deny(improper_ctypes)] #![allow( clippy::cognitive_complexity, diff --git a/third-party/Cargo.lock b/third-party/Cargo.lock index c5d5302af..258e09caf 100644 --- a/third-party/Cargo.lock +++ b/third-party/Cargo.lock @@ -65,7 +65,7 @@ dependencies = [ [[package]] name = "cxx" -version = "0.2.10" +version = "0.2.11" dependencies = [ "anyhow", "cc", @@ -90,7 +90,7 @@ dependencies = [ [[package]] name = "cxxbridge-cmd" -version = "0.2.10" +version = "0.2.11" dependencies = [ "anyhow", "codespan-reporting", @@ -110,7 +110,7 @@ dependencies = [ [[package]] name = "cxxbridge-macro" -version = "0.2.10" +version = "0.2.11" dependencies = [ "cxx", "proc-macro2",