diff --git a/Cargo.toml b/Cargo.toml index 8374c6ec4..de7e132b1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cxx" -version = "1.0.15" # remember to update html_root_url +version = "1.0.16" # 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.15", path = "macro" } +cxxbridge-macro = { version = "=1.0.16", path = "macro" } link-cplusplus = "1.0" [build-dependencies] cc = "1.0.49" -cxxbridge-flags = { version = "=1.0.15", path = "flags", default-features = false } +cxxbridge-flags = { version = "=1.0.16", path = "flags", default-features = false } [dev-dependencies] -cxx-build = { version = "=1.0.15", path = "gen/build" } +cxx-build = { version = "=1.0.16", 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 968252982..a770f1104 100644 --- a/flags/Cargo.toml +++ b/flags/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cxxbridge-flags" -version = "1.0.15" +version = "1.0.16" authors = ["David Tolnay "] edition = "2018" license = "MIT OR Apache-2.0" diff --git a/gen/build/Cargo.toml b/gen/build/Cargo.toml index ec4f50c03..8c40e940f 100644 --- a/gen/build/Cargo.toml +++ b/gen/build/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cxx-build" -version = "1.0.15" +version = "1.0.16" authors = ["David Tolnay "] edition = "2018" license = "MIT OR Apache-2.0" diff --git a/gen/cmd/Cargo.toml b/gen/cmd/Cargo.toml index f1451cb16..f6d59d20b 100644 --- a/gen/cmd/Cargo.toml +++ b/gen/cmd/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cxxbridge-cmd" -version = "1.0.15" +version = "1.0.16" authors = ["David Tolnay "] edition = "2018" license = "MIT OR Apache-2.0" diff --git a/gen/lib/Cargo.toml b/gen/lib/Cargo.toml index 975e0fcd1..5d723d094 100644 --- a/gen/lib/Cargo.toml +++ b/gen/lib/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cxx-gen" -version = "0.7.15" +version = "0.7.16" authors = ["Adrian Taylor "] edition = "2018" license = "MIT OR Apache-2.0" diff --git a/macro/Cargo.toml b/macro/Cargo.toml index b83ced7e1..40fd07fa5 100644 --- a/macro/Cargo.toml +++ b/macro/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cxxbridge-macro" -version = "1.0.15" +version = "1.0.16" authors = ["David Tolnay "] edition = "2018" license = "MIT OR Apache-2.0" diff --git a/src/lib.rs b/src/lib.rs index d643c7573..f9fd9aee9 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.15")] +#![doc(html_root_url = "https://docs.rs/cxx/1.0.16")] #![deny(improper_ctypes)] #![allow(non_camel_case_types)] #![allow( diff --git a/third-party/Cargo.lock b/third-party/Cargo.lock index d1eecb807..6d5a2e92b 100644 --- a/third-party/Cargo.lock +++ b/third-party/Cargo.lock @@ -59,7 +59,7 @@ dependencies = [ [[package]] name = "cxx" -version = "1.0.15" +version = "1.0.16" dependencies = [ "cc", "cxx-build", @@ -74,7 +74,7 @@ dependencies = [ [[package]] name = "cxx-build" -version = "1.0.15" +version = "1.0.16" dependencies = [ "cc", "codespan-reporting", @@ -89,7 +89,7 @@ dependencies = [ [[package]] name = "cxx-gen" -version = "0.7.15" +version = "0.7.16" dependencies = [ "cc", "codespan-reporting", @@ -109,7 +109,7 @@ dependencies = [ [[package]] name = "cxxbridge-cmd" -version = "1.0.15" +version = "1.0.16" dependencies = [ "clap", "codespan-reporting", @@ -120,11 +120,11 @@ dependencies = [ [[package]] name = "cxxbridge-flags" -version = "1.0.15" +version = "1.0.16" [[package]] name = "cxxbridge-macro" -version = "1.0.15" +version = "1.0.16" dependencies = [ "cxx", "proc-macro2",