diff --git a/Cargo.toml b/Cargo.toml index 5d42b0c66..41ad424f0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cxx" -version = "1.0.93" # remember to update html_root_url +version = "1.0.94" # remember to update html_root_url authors = ["David Tolnay "] categories = ["development-tools::ffi", "api-bindings", "no-std"] description = "Safe interop between Rust and C++" @@ -23,15 +23,15 @@ alloc = [] std = ["alloc"] [dependencies] -cxxbridge-macro = { version = "=1.0.93", path = "macro" } +cxxbridge-macro = { version = "=1.0.94", path = "macro" } link-cplusplus = "1.0" [build-dependencies] cc = "1.0.49" -cxxbridge-flags = { version = "=1.0.93", path = "flags", default-features = false } +cxxbridge-flags = { version = "=1.0.94", path = "flags", default-features = false } [dev-dependencies] -cxx-build = { version = "=1.0.93", path = "gen/build" } +cxx-build = { version = "=1.0.94", 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 0baafb17d..12891f515 100644 --- a/flags/Cargo.toml +++ b/flags/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cxxbridge-flags" -version = "1.0.93" +version = "1.0.94" authors = ["David Tolnay "] categories = ["development-tools::ffi", "compilers"] description = "Compiler configuration of the `cxx` crate (implementation detail)" diff --git a/gen/build/Cargo.toml b/gen/build/Cargo.toml index 9b74255bf..9b0c459f5 100644 --- a/gen/build/Cargo.toml +++ b/gen/build/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cxx-build" -version = "1.0.93" +version = "1.0.94" authors = ["David Tolnay "] categories = ["development-tools::build-utils", "development-tools::ffi"] description = "C++ code generator for integrating `cxx` crate into a Cargo build." diff --git a/gen/build/src/lib.rs b/gen/build/src/lib.rs index b6b843a62..d9bd5ea77 100644 --- a/gen/build/src/lib.rs +++ b/gen/build/src/lib.rs @@ -45,7 +45,7 @@ //! $ cxxbridge src/main.rs > path/to/mybridge.cc //! ``` -#![doc(html_root_url = "https://docs.rs/cxx-build/1.0.93")] +#![doc(html_root_url = "https://docs.rs/cxx-build/1.0.94")] #![allow( clippy::cast_sign_loss, clippy::default_trait_access, diff --git a/gen/cmd/Cargo.toml b/gen/cmd/Cargo.toml index 0026a5317..c8db1e7eb 100644 --- a/gen/cmd/Cargo.toml +++ b/gen/cmd/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cxxbridge-cmd" -version = "1.0.93" +version = "1.0.94" authors = ["David Tolnay "] categories = ["development-tools::build-utils", "development-tools::ffi"] description = "C++ code generator for integrating `cxx` crate into a non-Cargo build." diff --git a/gen/lib/Cargo.toml b/gen/lib/Cargo.toml index b4f45b6bf..817a0dc5f 100644 --- a/gen/lib/Cargo.toml +++ b/gen/lib/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cxx-gen" -version = "0.7.93" +version = "0.7.94" authors = ["Adrian Taylor "] categories = ["development-tools::ffi"] description = "C++ code generator for integrating `cxx` crate into higher level tools." diff --git a/gen/lib/src/lib.rs b/gen/lib/src/lib.rs index 36680b951..a11f1f9bf 100644 --- a/gen/lib/src/lib.rs +++ b/gen/lib/src/lib.rs @@ -7,7 +7,7 @@ //! [dtolnay/cxx#235]: https://github.com/dtolnay/cxx/issues/235 //! [https://github.com/google/autocxx]: https://github.com/google/autocxx -#![doc(html_root_url = "https://docs.rs/cxx-gen/0.7.93")] +#![doc(html_root_url = "https://docs.rs/cxx-gen/0.7.94")] #![deny(missing_docs)] #![allow(dead_code)] #![allow( diff --git a/macro/Cargo.toml b/macro/Cargo.toml index 89d97022d..106a2ecf0 100644 --- a/macro/Cargo.toml +++ b/macro/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cxxbridge-macro" -version = "1.0.93" +version = "1.0.94" authors = ["David Tolnay "] categories = ["development-tools::ffi"] description = "Implementation detail of the `cxx` crate." diff --git a/src/lib.rs b/src/lib.rs index 2c448ae95..a0b175a7a 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.93")] +#![doc(html_root_url = "https://docs.rs/cxx/1.0.94")] #![deny( improper_ctypes, improper_ctypes_definitions,