From 34d73d67410e79a363fd9789b882d607103dd7be Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Tue, 7 Dec 2021 16:47:33 -0800 Subject: [PATCH] Release 1.0.58 --- 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 6c3b52fbc..5567a0d9a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cxx" -version = "1.0.57" # remember to update html_root_url +version = "1.0.58" # remember to update html_root_url authors = ["David Tolnay "] edition = "2018" rust-version = "1.48" @@ -24,15 +24,15 @@ alloc = [] std = ["alloc"] [dependencies] -cxxbridge-macro = { version = "=1.0.57", path = "macro" } +cxxbridge-macro = { version = "=1.0.58", path = "macro" } link-cplusplus = "1.0" [build-dependencies] cc = "1.0.49" -cxxbridge-flags = { version = "=1.0.57", path = "flags", default-features = false } +cxxbridge-flags = { version = "=1.0.58", path = "flags", default-features = false } [dev-dependencies] -cxx-build = { version = "=1.0.57", path = "gen/build" } +cxx-build = { version = "=1.0.58", 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 0568d496f..d8f2120a8 100644 --- a/flags/Cargo.toml +++ b/flags/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cxxbridge-flags" -version = "1.0.57" +version = "1.0.58" authors = ["David Tolnay "] edition = "2018" rust-version = "1.48" diff --git a/gen/build/Cargo.toml b/gen/build/Cargo.toml index 92524598c..7dd94816a 100644 --- a/gen/build/Cargo.toml +++ b/gen/build/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cxx-build" -version = "1.0.57" +version = "1.0.58" authors = ["David Tolnay "] edition = "2018" rust-version = "1.48" diff --git a/gen/cmd/Cargo.toml b/gen/cmd/Cargo.toml index e2887554f..77d69e2ee 100644 --- a/gen/cmd/Cargo.toml +++ b/gen/cmd/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cxxbridge-cmd" -version = "1.0.57" +version = "1.0.58" authors = ["David Tolnay "] edition = "2018" rust-version = "1.48" diff --git a/gen/lib/Cargo.toml b/gen/lib/Cargo.toml index c8f5f05f6..07ca0214c 100644 --- a/gen/lib/Cargo.toml +++ b/gen/lib/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cxx-gen" -version = "0.7.57" +version = "0.7.58" authors = ["Adrian Taylor "] edition = "2018" rust-version = "1.48" diff --git a/macro/Cargo.toml b/macro/Cargo.toml index 0f227c950..2d60ec8de 100644 --- a/macro/Cargo.toml +++ b/macro/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cxxbridge-macro" -version = "1.0.57" +version = "1.0.58" authors = ["David Tolnay "] edition = "2018" rust-version = "1.48" diff --git a/src/lib.rs b/src/lib.rs index aac8217bc..a017f95fc 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -364,7 +364,7 @@ //! #![no_std] -#![doc(html_root_url = "https://docs.rs/cxx/1.0.57")] +#![doc(html_root_url = "https://docs.rs/cxx/1.0.58")] #![deny(improper_ctypes, improper_ctypes_definitions, missing_docs)] #![cfg_attr(not(no_unsafe_op_in_unsafe_fn_lint), deny(unsafe_op_in_unsafe_fn))] #![cfg_attr(no_unsafe_op_in_unsafe_fn_lint, allow(unused_unsafe))] diff --git a/third-party/Cargo.lock b/third-party/Cargo.lock index 989211cba..0cb39c6dc 100644 --- a/third-party/Cargo.lock +++ b/third-party/Cargo.lock @@ -100,7 +100,7 @@ dependencies = [ [[package]] name = "cxx" -version = "1.0.57" +version = "1.0.58" dependencies = [ "cc", "cxx-build", @@ -115,7 +115,7 @@ dependencies = [ [[package]] name = "cxx-build" -version = "1.0.57" +version = "1.0.58" dependencies = [ "cc", "codespan-reporting", @@ -130,7 +130,7 @@ dependencies = [ [[package]] name = "cxx-gen" -version = "0.7.57" +version = "0.7.58" dependencies = [ "codespan-reporting", "proc-macro2", @@ -149,7 +149,7 @@ dependencies = [ [[package]] name = "cxxbridge-cmd" -version = "1.0.57" +version = "1.0.58" dependencies = [ "clap", "codespan-reporting", @@ -160,11 +160,11 @@ dependencies = [ [[package]] name = "cxxbridge-flags" -version = "1.0.57" +version = "1.0.58" [[package]] name = "cxxbridge-macro" -version = "1.0.57" +version = "1.0.58" dependencies = [ "clang-ast", "cxx",