Release 1.0.187
diff --git a/Cargo.toml b/Cargo.toml index dc5b7b0..5ee5cad 100644 --- a/Cargo.toml +++ b/Cargo.toml
@@ -1,6 +1,6 @@ [package] name = "cxx" -version = "1.0.186" +version = "1.0.187" authors = ["David Tolnay <dtolnay@gmail.com>"] categories = ["development-tools::ffi", "api-bindings", "no-std"] description = "Safe interop between Rust and C++" @@ -23,13 +23,13 @@ std = ["alloc", "foldhash/std"] [dependencies] -cxxbridge-macro = { version = "=1.0.186", path = "macro" } +cxxbridge-macro = { version = "=1.0.187", path = "macro" } foldhash = { version = "0.2", default-features = false } link-cplusplus = "1.0.11" [build-dependencies] cc = "1.0.101" -cxxbridge-flags = { version = "=1.0.186", path = "flags", default-features = false } +cxxbridge-flags = { version = "=1.0.187", path = "flags", default-features = false } [dev-dependencies] cc = "1.0.101" @@ -47,8 +47,8 @@ # Disallow incompatible version appearing in the same lockfile. [target.'cfg(any())'.build-dependencies] -cxx-build = { version = "=1.0.186", path = "gen/build" } -cxxbridge-cmd = { version = "=1.0.186", path = "gen/cmd" } +cxx-build = { version = "=1.0.187", path = "gen/build" } +cxxbridge-cmd = { version = "=1.0.187", path = "gen/cmd" } [workspace] members = ["demo", "flags", "gen/build", "gen/cmd", "gen/lib", "macro", "tests/ffi"]
diff --git a/flags/Cargo.toml b/flags/Cargo.toml index 8eb20d1..e79a3f6 100644 --- a/flags/Cargo.toml +++ b/flags/Cargo.toml
@@ -1,6 +1,6 @@ [package] name = "cxxbridge-flags" -version = "1.0.186" +version = "1.0.187" authors = ["David Tolnay <dtolnay@gmail.com>"] 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 cf6639d..e7c2c09 100644 --- a/gen/build/Cargo.toml +++ b/gen/build/Cargo.toml
@@ -1,6 +1,6 @@ [package] name = "cxx-build" -version = "1.0.186" +version = "1.0.187" authors = ["David Tolnay <dtolnay@gmail.com>"] 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 af4d6cc..def8011 100644 --- a/gen/build/src/lib.rs +++ b/gen/build/src/lib.rs
@@ -44,7 +44,7 @@ //! $ cxxbridge src/main.rs > path/to/mybridge.cc //! ``` -#![doc(html_root_url = "https://docs.rs/cxx-build/1.0.186")] +#![doc(html_root_url = "https://docs.rs/cxx-build/1.0.187")] #![cfg_attr(not(check_cfg), allow(unexpected_cfgs))] #![allow( clippy::cast_sign_loss,
diff --git a/gen/cmd/Cargo.toml b/gen/cmd/Cargo.toml index 8666336..3022d41 100644 --- a/gen/cmd/Cargo.toml +++ b/gen/cmd/Cargo.toml
@@ -1,6 +1,6 @@ [package] name = "cxxbridge-cmd" -version = "1.0.186" +version = "1.0.187" authors = ["David Tolnay <dtolnay@gmail.com>"] 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 d6d1b37..86ffe47 100644 --- a/gen/lib/Cargo.toml +++ b/gen/lib/Cargo.toml
@@ -1,6 +1,6 @@ [package] name = "cxx-gen" -version = "0.7.186" +version = "0.7.187" authors = ["Adrian Taylor <adetaylor@chromium.org>"] 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 ea1aa58..8ed7119 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.186")] +#![doc(html_root_url = "https://docs.rs/cxx-gen/0.7.187")] #![deny(missing_docs)] #![expect(dead_code)] #![cfg_attr(not(check_cfg), allow(unexpected_cfgs))]
diff --git a/macro/Cargo.toml b/macro/Cargo.toml index 86bb2ec..177800f 100644 --- a/macro/Cargo.toml +++ b/macro/Cargo.toml
@@ -1,6 +1,6 @@ [package] name = "cxxbridge-macro" -version = "1.0.186" +version = "1.0.187" authors = ["David Tolnay <dtolnay@gmail.com>"] categories = ["development-tools::ffi"] description = "Implementation detail of the `cxx` crate."
diff --git a/src/lib.rs b/src/lib.rs index e7b2dac..46b4533 100644 --- a/src/lib.rs +++ b/src/lib.rs
@@ -363,7 +363,7 @@ //! </table> #![no_std] -#![doc(html_root_url = "https://docs.rs/cxx/1.0.186")] +#![doc(html_root_url = "https://docs.rs/cxx/1.0.187")] #![cfg_attr(docsrs, feature(doc_cfg))] #![deny( improper_ctypes,