From b63fec76948cc6941bfed1bec57e007b8238dbd5 Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Wed, 6 Mar 2024 00:15:46 -0800 Subject: [PATCH] Release 1.0.119 --- Cargo.toml | 8 ++++---- 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, 12 insertions(+), 12 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 70508e9d9..c1806424d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cxx" -version = "1.0.118" +version = "1.0.119" 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.118", path = "macro" } +cxxbridge-macro = { version = "=1.0.119", path = "macro" } link-cplusplus = "1.0.9" [build-dependencies] cc = "1.0.83" -cxxbridge-flags = { version = "=1.0.118", path = "flags", default-features = false } +cxxbridge-flags = { version = "=1.0.119", path = "flags", default-features = false } [dev-dependencies] -cxx-build = { version = "=1.0.118", path = "gen/build" } +cxx-build = { version = "=1.0.119", path = "gen/build" } cxx-gen = { version = "0.7", path = "gen/lib" } cxx-test-suite = { version = "0", path = "tests/ffi" } rustversion = "1.0.13" diff --git a/flags/Cargo.toml b/flags/Cargo.toml index d0eff6273..9cb88a04f 100644 --- a/flags/Cargo.toml +++ b/flags/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cxxbridge-flags" -version = "1.0.118" +version = "1.0.119" 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 ef6783f8a..ee20e2b74 100644 --- a/gen/build/Cargo.toml +++ b/gen/build/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cxx-build" -version = "1.0.118" +version = "1.0.119" 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 fb8644d9c..4fcb94595 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.118")] +#![doc(html_root_url = "https://docs.rs/cxx-build/1.0.119")] #![allow( clippy::cast_sign_loss, clippy::default_trait_access, diff --git a/gen/cmd/Cargo.toml b/gen/cmd/Cargo.toml index 1c348d53f..fef5b8c33 100644 --- a/gen/cmd/Cargo.toml +++ b/gen/cmd/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cxxbridge-cmd" -version = "1.0.118" +version = "1.0.119" 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 b39780e70..2e400ffb0 100644 --- a/gen/lib/Cargo.toml +++ b/gen/lib/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cxx-gen" -version = "0.7.118" +version = "0.7.119" 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 1fa700a3b..126586030 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.118")] +#![doc(html_root_url = "https://docs.rs/cxx-gen/0.7.119")] #![deny(missing_docs)] #![allow(dead_code)] #![allow( diff --git a/macro/Cargo.toml b/macro/Cargo.toml index 470f065ab..c81bc093e 100644 --- a/macro/Cargo.toml +++ b/macro/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cxxbridge-macro" -version = "1.0.118" +version = "1.0.119" 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 0b133649c..c2652b855 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.118")] +#![doc(html_root_url = "https://docs.rs/cxx/1.0.119")] #![cfg_attr(doc_cfg, feature(doc_cfg))] #![deny( improper_ctypes,