From 45e4a80875afa5beda807126e471c7ad56fb67e0 Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Sun, 29 Nov 2020 14:57:08 -0800 Subject: [PATCH] Release 1.0.7 --- Cargo.toml | 8 ++++---- flags/Cargo.toml | 2 +- gen/build/Cargo.toml | 2 +- gen/cmd/Cargo.toml | 2 +- gen/lib/Cargo.toml | 2 +- macro/Cargo.toml | 2 +- src/lib.rs | 2 +- third-party/Cargo.lock | 12 ++++++------ 8 files changed, 16 insertions(+), 16 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 4d442ea19..899a481f6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cxx" -version = "1.0.6" # remember to update html_root_url +version = "1.0.7" # remember to update html_root_url authors = ["David Tolnay "] edition = "2018" links = "cxxbridge1" @@ -21,15 +21,15 @@ default = ["cxxbridge-flags/default"] # c++11 "c++20" = ["cxxbridge-flags/c++20"] [dependencies] -cxxbridge-macro = { version = "=1.0.6", path = "macro" } +cxxbridge-macro = { version = "=1.0.7", path = "macro" } link-cplusplus = "1.0" [build-dependencies] cc = "1.0.49" -cxxbridge-flags = { version = "=1.0.6", path = "flags", default-features = false } +cxxbridge-flags = { version = "=1.0.7", path = "flags", default-features = false } [dev-dependencies] -cxx-build = { version = "=1.0.6", path = "gen/build" } +cxx-build = { version = "=1.0.7", path = "gen/build" } cxx-gen = { version = "0.7", path = "gen/lib" } cxx-test-suite = { version = "0", path = "tests/ffi" } rustversion = "1.0" diff --git a/flags/Cargo.toml b/flags/Cargo.toml index 87f6a5f7d..c50ca3765 100644 --- a/flags/Cargo.toml +++ b/flags/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cxxbridge-flags" -version = "1.0.6" +version = "1.0.7" authors = ["David Tolnay "] edition = "2018" license = "MIT OR Apache-2.0" diff --git a/gen/build/Cargo.toml b/gen/build/Cargo.toml index 80adb6d03..ebcb93e98 100644 --- a/gen/build/Cargo.toml +++ b/gen/build/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cxx-build" -version = "1.0.6" +version = "1.0.7" authors = ["David Tolnay "] edition = "2018" license = "MIT OR Apache-2.0" diff --git a/gen/cmd/Cargo.toml b/gen/cmd/Cargo.toml index c7f54ccef..5eb5b136b 100644 --- a/gen/cmd/Cargo.toml +++ b/gen/cmd/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cxxbridge-cmd" -version = "1.0.6" +version = "1.0.7" authors = ["David Tolnay "] edition = "2018" license = "MIT OR Apache-2.0" diff --git a/gen/lib/Cargo.toml b/gen/lib/Cargo.toml index 5397af682..ff054899d 100644 --- a/gen/lib/Cargo.toml +++ b/gen/lib/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cxx-gen" -version = "0.7.6" +version = "0.7.7" authors = ["Adrian Taylor "] edition = "2018" license = "MIT OR Apache-2.0" diff --git a/macro/Cargo.toml b/macro/Cargo.toml index e570f8b7f..1e16728a4 100644 --- a/macro/Cargo.toml +++ b/macro/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cxxbridge-macro" -version = "1.0.6" +version = "1.0.7" authors = ["David Tolnay "] edition = "2018" license = "MIT OR Apache-2.0" diff --git a/src/lib.rs b/src/lib.rs index e251a2354..fd38c2769 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -363,7 +363,7 @@ //! #![no_std] -#![doc(html_root_url = "https://docs.rs/cxx/1.0.6")] +#![doc(html_root_url = "https://docs.rs/cxx/1.0.7")] #![deny(improper_ctypes)] #![allow(non_camel_case_types)] #![allow( diff --git a/third-party/Cargo.lock b/third-party/Cargo.lock index 6754d538c..55c3ba0f8 100644 --- a/third-party/Cargo.lock +++ b/third-party/Cargo.lock @@ -59,7 +59,7 @@ dependencies = [ [[package]] name = "cxx" -version = "1.0.6" +version = "1.0.7" dependencies = [ "cc", "cxx-build", @@ -74,7 +74,7 @@ dependencies = [ [[package]] name = "cxx-build" -version = "1.0.6" +version = "1.0.7" dependencies = [ "cc", "codespan-reporting", @@ -89,7 +89,7 @@ dependencies = [ [[package]] name = "cxx-gen" -version = "0.7.6" +version = "0.7.7" dependencies = [ "cc", "codespan-reporting", @@ -109,7 +109,7 @@ dependencies = [ [[package]] name = "cxxbridge-cmd" -version = "1.0.6" +version = "1.0.7" dependencies = [ "clap", "codespan-reporting", @@ -120,11 +120,11 @@ dependencies = [ [[package]] name = "cxxbridge-flags" -version = "1.0.6" +version = "1.0.7" [[package]] name = "cxxbridge-macro" -version = "1.0.6" +version = "1.0.7" dependencies = [ "cxx", "proc-macro2",