diff --git a/Cargo.toml b/Cargo.toml index 95fe14a11..cab981476 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cxx" -version = "0.4.5" # remember to update html_root_url +version = "0.4.6" # remember to update html_root_url authors = ["David Tolnay "] edition = "2018" links = "cxxbridge04" @@ -20,15 +20,15 @@ default = ["cxxbridge-flags/default"] # c++11 "c++20" = ["cxxbridge-flags/c++20"] [dependencies] -cxxbridge-macro = { version = "=0.4.5", path = "macro" } +cxxbridge-macro = { version = "=0.4.6", path = "macro" } link-cplusplus = "1.0" [build-dependencies] cc = "1.0.49" -cxxbridge-flags = { version = "=0.4.5", path = "flags", default-features = false } +cxxbridge-flags = { version = "=0.4.6", path = "flags", default-features = false } [dev-dependencies] -cxx-build = { version = "=0.4.5", path = "gen/build" } +cxx-build = { version = "=0.4.6", 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 6c58f78b0..98cf0474f 100644 --- a/flags/Cargo.toml +++ b/flags/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cxxbridge-flags" -version = "0.4.5" +version = "0.4.6" authors = ["David Tolnay "] edition = "2018" license = "MIT OR Apache-2.0" diff --git a/gen/build/Cargo.toml b/gen/build/Cargo.toml index cfc1b5ed6..cfe094c58 100644 --- a/gen/build/Cargo.toml +++ b/gen/build/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cxx-build" -version = "0.4.5" +version = "0.4.6" authors = ["David Tolnay "] edition = "2018" license = "MIT OR Apache-2.0" diff --git a/gen/cmd/Cargo.toml b/gen/cmd/Cargo.toml index e19092cb7..ba6d28afb 100644 --- a/gen/cmd/Cargo.toml +++ b/gen/cmd/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cxxbridge-cmd" -version = "0.4.5" +version = "0.4.6" authors = ["David Tolnay "] edition = "2018" license = "MIT OR Apache-2.0" diff --git a/gen/lib/Cargo.toml b/gen/lib/Cargo.toml index 6731d124c..faa82c273 100644 --- a/gen/lib/Cargo.toml +++ b/gen/lib/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cxx-gen" -version = "0.4.0" +version = "0.4.1" authors = ["Adrian Taylor "] edition = "2018" license = "MIT OR Apache-2.0" diff --git a/macro/Cargo.toml b/macro/Cargo.toml index 781cb66ce..4d17d6c4c 100644 --- a/macro/Cargo.toml +++ b/macro/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cxxbridge-macro" -version = "0.4.5" +version = "0.4.6" authors = ["David Tolnay "] edition = "2018" license = "MIT OR Apache-2.0" diff --git a/src/lib.rs b/src/lib.rs index 9efac51e2..8990f5b96 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -349,7 +349,7 @@ //! [https://github.com/dtolnay/cxx]: https://github.com/dtolnay/cxx #![no_std] -#![doc(html_root_url = "https://docs.rs/cxx/0.4.5")] +#![doc(html_root_url = "https://docs.rs/cxx/0.4.6")] #![deny(improper_ctypes)] #![allow(non_camel_case_types)] #![allow( diff --git a/third-party/Cargo.lock b/third-party/Cargo.lock index 50eb94c8b..c90ed81ae 100644 --- a/third-party/Cargo.lock +++ b/third-party/Cargo.lock @@ -59,7 +59,7 @@ dependencies = [ [[package]] name = "cxx" -version = "0.4.5" +version = "0.4.6" dependencies = [ "cc", "cxx-build", @@ -73,7 +73,7 @@ dependencies = [ [[package]] name = "cxx-build" -version = "0.4.5" +version = "0.4.6" dependencies = [ "cc", "codespan-reporting", @@ -85,7 +85,7 @@ dependencies = [ [[package]] name = "cxx-gen" -version = "0.4.0" +version = "0.4.1" dependencies = [ "cc", "codespan-reporting", @@ -105,7 +105,7 @@ dependencies = [ [[package]] name = "cxxbridge-cmd" -version = "0.4.5" +version = "0.4.6" dependencies = [ "clap", "codespan-reporting", @@ -116,11 +116,11 @@ dependencies = [ [[package]] name = "cxxbridge-flags" -version = "0.4.5" +version = "0.4.6" [[package]] name = "cxxbridge-macro" -version = "0.4.5" +version = "0.4.6" dependencies = [ "cxx", "proc-macro2",