From 430b5de1ff6b4cc010823ae7a98535d7d241e8fc Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Mon, 7 Sep 2020 00:00:23 -0700 Subject: [PATCH] Release 0.4.3 --- Cargo.toml | 10 +++++----- flags/Cargo.toml | 2 +- gen/build/Cargo.toml | 2 +- gen/cmd/Cargo.toml | 2 +- macro/Cargo.toml | 2 +- src/lib.rs | 2 +- src/symbols/Cargo.toml | 2 +- third-party/Cargo.lock | 12 ++++++------ 8 files changed, 17 insertions(+), 17 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 64434759a..a2aaf8acb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cxx" -version = "0.4.2" # remember to update html_root_url +version = "0.4.3" # remember to update html_root_url authors = ["David Tolnay "] edition = "2018" links = "cxxbridge04" @@ -20,16 +20,16 @@ default = ["cxxbridge-flags/default"] # c++11 "c++20" = ["cxxbridge-flags/c++20"] [dependencies] -cxx-symbols = { version = "=0.4.2", path = "src/symbols" } -cxxbridge-macro = { version = "=0.4.2", path = "macro" } +cxx-symbols = { version = "=0.4.3", path = "src/symbols" } +cxxbridge-macro = { version = "=0.4.3", path = "macro" } link-cplusplus = "1.0" [build-dependencies] cc = "1.0.49" -cxxbridge-flags = { version = "=0.4.2", path = "flags", default-features = false } +cxxbridge-flags = { version = "=0.4.3", path = "flags", default-features = false } [dev-dependencies] -cxx-build = { version = "=0.4.2", path = "gen/build" } +cxx-build = { version = "=0.4.3", path = "gen/build" } cxx-test-suite = { version = "0", path = "tests/ffi" } rustversion = "1.0" trybuild = { version = "1.0.33", features = ["diff"] } diff --git a/flags/Cargo.toml b/flags/Cargo.toml index 6499adda0..afae44612 100644 --- a/flags/Cargo.toml +++ b/flags/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cxxbridge-flags" -version = "0.4.2" +version = "0.4.3" authors = ["David Tolnay "] edition = "2018" license = "MIT OR Apache-2.0" diff --git a/gen/build/Cargo.toml b/gen/build/Cargo.toml index f41ea6e3f..acd2c3a0f 100644 --- a/gen/build/Cargo.toml +++ b/gen/build/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cxx-build" -version = "0.4.2" +version = "0.4.3" authors = ["David Tolnay "] edition = "2018" license = "MIT OR Apache-2.0" diff --git a/gen/cmd/Cargo.toml b/gen/cmd/Cargo.toml index 250fe6dfd..e0264a67f 100644 --- a/gen/cmd/Cargo.toml +++ b/gen/cmd/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cxxbridge-cmd" -version = "0.4.2" +version = "0.4.3" authors = ["David Tolnay "] edition = "2018" license = "MIT OR Apache-2.0" diff --git a/macro/Cargo.toml b/macro/Cargo.toml index dae4c599a..9086da60c 100644 --- a/macro/Cargo.toml +++ b/macro/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cxxbridge-macro" -version = "0.4.2" +version = "0.4.3" authors = ["David Tolnay "] edition = "2018" license = "MIT OR Apache-2.0" diff --git a/src/lib.rs b/src/lib.rs index 0fb7ad930..8c7344bfb 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -348,7 +348,7 @@ //! //! [https://github.com/dtolnay/cxx]: https://github.com/dtolnay/cxx -#![doc(html_root_url = "https://docs.rs/cxx/0.4.2")] +#![doc(html_root_url = "https://docs.rs/cxx/0.4.3")] #![deny(improper_ctypes)] #![allow(non_camel_case_types)] #![allow( diff --git a/src/symbols/Cargo.toml b/src/symbols/Cargo.toml index 80728d35f..93283addd 100644 --- a/src/symbols/Cargo.toml +++ b/src/symbols/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cxx-symbols" -version = "0.4.2" +version = "0.4.3" authors = ["David Tolnay "] edition = "2018" license = "MIT OR Apache-2.0" diff --git a/third-party/Cargo.lock b/third-party/Cargo.lock index 5c1350a5f..92ac6b32a 100644 --- a/third-party/Cargo.lock +++ b/third-party/Cargo.lock @@ -59,7 +59,7 @@ dependencies = [ [[package]] name = "cxx" -version = "0.4.2" +version = "0.4.3" dependencies = [ "cc", "cxx-build", @@ -74,7 +74,7 @@ dependencies = [ [[package]] name = "cxx-build" -version = "0.4.2" +version = "0.4.3" dependencies = [ "cc", "codespan-reporting", @@ -97,7 +97,7 @@ dependencies = [ [[package]] name = "cxx-symbols" -version = "0.4.2" +version = "0.4.3" [[package]] name = "cxx-test-suite" @@ -110,7 +110,7 @@ dependencies = [ [[package]] name = "cxxbridge-cmd" -version = "0.4.2" +version = "0.4.3" dependencies = [ "clap", "codespan-reporting", @@ -121,11 +121,11 @@ dependencies = [ [[package]] name = "cxxbridge-flags" -version = "0.4.2" +version = "0.4.3" [[package]] name = "cxxbridge-macro" -version = "0.4.2" +version = "0.4.3" dependencies = [ "cxx", "proc-macro2",