From 72d47c95a02fd22723aeac7d0893673dbac98488 Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Tue, 16 Feb 2021 13:31:41 -0800 Subject: [PATCH] Release 1.0.32 --- 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 1f9d3d5dd..357eb0592 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cxx" -version = "1.0.31" # remember to update html_root_url +version = "1.0.32" # 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.31", path = "macro" } +cxxbridge-macro = { version = "=1.0.32", path = "macro" } link-cplusplus = "1.0" [build-dependencies] cc = "1.0.49" -cxxbridge-flags = { version = "=1.0.31", path = "flags", default-features = false } +cxxbridge-flags = { version = "=1.0.32", path = "flags", default-features = false } [dev-dependencies] -cxx-build = { version = "=1.0.31", path = "gen/build" } +cxx-build = { version = "=1.0.32", 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 3452759f9..6bd957eee 100644 --- a/flags/Cargo.toml +++ b/flags/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cxxbridge-flags" -version = "1.0.31" +version = "1.0.32" authors = ["David Tolnay "] edition = "2018" license = "MIT OR Apache-2.0" diff --git a/gen/build/Cargo.toml b/gen/build/Cargo.toml index ee8080be2..74e7b2a8d 100644 --- a/gen/build/Cargo.toml +++ b/gen/build/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cxx-build" -version = "1.0.31" +version = "1.0.32" authors = ["David Tolnay "] edition = "2018" license = "MIT OR Apache-2.0" diff --git a/gen/cmd/Cargo.toml b/gen/cmd/Cargo.toml index b993bab32..a62eab8ac 100644 --- a/gen/cmd/Cargo.toml +++ b/gen/cmd/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cxxbridge-cmd" -version = "1.0.31" +version = "1.0.32" authors = ["David Tolnay "] edition = "2018" license = "MIT OR Apache-2.0" diff --git a/gen/lib/Cargo.toml b/gen/lib/Cargo.toml index ebcec6408..be389fe4f 100644 --- a/gen/lib/Cargo.toml +++ b/gen/lib/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cxx-gen" -version = "0.7.31" +version = "0.7.32" authors = ["Adrian Taylor "] edition = "2018" license = "MIT OR Apache-2.0" diff --git a/macro/Cargo.toml b/macro/Cargo.toml index 7b1e47cab..c17f010e5 100644 --- a/macro/Cargo.toml +++ b/macro/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cxxbridge-macro" -version = "1.0.31" +version = "1.0.32" authors = ["David Tolnay "] edition = "2018" license = "MIT OR Apache-2.0" diff --git a/src/lib.rs b/src/lib.rs index 0bba6a20d..906d951d3 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.31")] +#![doc(html_root_url = "https://docs.rs/cxx/1.0.32")] #![deny(improper_ctypes)] #![allow(non_camel_case_types)] #![allow( diff --git a/third-party/Cargo.lock b/third-party/Cargo.lock index bd9c79dcb..23f34b0e0 100644 --- a/third-party/Cargo.lock +++ b/third-party/Cargo.lock @@ -64,7 +64,7 @@ dependencies = [ [[package]] name = "cxx" -version = "1.0.31" +version = "1.0.32" dependencies = [ "cc", "cxx-build", @@ -79,7 +79,7 @@ dependencies = [ [[package]] name = "cxx-build" -version = "1.0.31" +version = "1.0.32" dependencies = [ "cc", "codespan-reporting", @@ -94,7 +94,7 @@ dependencies = [ [[package]] name = "cxx-gen" -version = "0.7.31" +version = "0.7.32" dependencies = [ "cc", "codespan-reporting", @@ -114,7 +114,7 @@ dependencies = [ [[package]] name = "cxxbridge-cmd" -version = "1.0.31" +version = "1.0.32" dependencies = [ "clap", "codespan-reporting", @@ -125,11 +125,11 @@ dependencies = [ [[package]] name = "cxxbridge-flags" -version = "1.0.31" +version = "1.0.32" [[package]] name = "cxxbridge-macro" -version = "1.0.31" +version = "1.0.32" dependencies = [ "cxx", "proc-macro2",