From d54e44698c3fa5833a861cb3ae502533b92f2f57 Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Tue, 24 Dec 2024 18:00:25 -0800 Subject: [PATCH] Release 1.0.136 --- Cargo.toml | 10 +++++----- flags/Cargo.toml | 2 +- gen/build/Cargo.toml | 2 +- gen/build/src/lib.rs | 2 +- gen/cmd/Cargo.toml | 2 +- gen/lib/Cargo.toml | 2 +- gen/lib/src/lib.rs | 2 +- macro/Cargo.toml | 2 +- src/lib.rs | 2 +- 9 files changed, 13 insertions(+), 13 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 272686f34..e37e2a1d2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cxx" -version = "1.0.135" +version = "1.0.136" authors = ["David Tolnay "] categories = ["development-tools::ffi", "api-bindings", "no-std"] description = "Safe interop between Rust and C++" @@ -23,16 +23,16 @@ alloc = [] std = ["alloc", "foldhash/std"] [dependencies] -cxxbridge-macro = { version = "=1.0.135", path = "macro" } +cxxbridge-macro = { version = "=1.0.136", path = "macro" } foldhash = { version = "0.1", default-features = false } link-cplusplus = "1.0.9" [build-dependencies] cc = "1.0.83" -cxxbridge-flags = { version = "=1.0.135", path = "flags", default-features = false } +cxxbridge-flags = { version = "=1.0.136", path = "flags", default-features = false } [dev-dependencies] -cxx-build = { version = "=1.0.135", path = "gen/build" } +cxx-build = { version = "=1.0.136", path = "gen/build" } cxx-gen = { version = "0.7", path = "gen/lib" } cxx-test-suite = { version = "0", path = "tests/ffi" } rustversion = "1.0.13" @@ -40,7 +40,7 @@ trybuild = { version = "1.0.81", features = ["diff"] } # Disallow incompatible cxxbridge-cmd version appearing in the same lockfile. [target.'cfg(any())'.build-dependencies] -cxxbridge-cmd = { version = "=1.0.135", path = "gen/cmd" } +cxxbridge-cmd = { version = "=1.0.136", path = "gen/cmd" } [lib] doc-scrape-examples = false diff --git a/flags/Cargo.toml b/flags/Cargo.toml index 966d5061d..3603bea61 100644 --- a/flags/Cargo.toml +++ b/flags/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cxxbridge-flags" -version = "1.0.135" +version = "1.0.136" 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 dc4dbcf15..999c00a2e 100644 --- a/gen/build/Cargo.toml +++ b/gen/build/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cxx-build" -version = "1.0.135" +version = "1.0.136" 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 bea68e7b0..3f52e48e6 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.135")] +#![doc(html_root_url = "https://docs.rs/cxx-build/1.0.136")] #![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 78e848fde..cdc95ffa2 100644 --- a/gen/cmd/Cargo.toml +++ b/gen/cmd/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cxxbridge-cmd" -version = "1.0.135" +version = "1.0.136" 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 151201554..7c68bf39b 100644 --- a/gen/lib/Cargo.toml +++ b/gen/lib/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cxx-gen" -version = "0.7.135" +version = "0.7.136" 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 fe0c4d1e6..05c8ce72f 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.135")] +#![doc(html_root_url = "https://docs.rs/cxx-gen/0.7.136")] #![deny(missing_docs)] #![allow(dead_code)] #![cfg_attr(not(check_cfg), allow(unexpected_cfgs))] diff --git a/macro/Cargo.toml b/macro/Cargo.toml index 026219cf8..8169fb438 100644 --- a/macro/Cargo.toml +++ b/macro/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cxxbridge-macro" -version = "1.0.135" +version = "1.0.136" 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 3750200d7..7791e37c2 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.135")] +#![doc(html_root_url = "https://docs.rs/cxx/1.0.136")] #![cfg_attr(docsrs, feature(doc_cfg))] #![deny( improper_ctypes,