aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Tolnay <dtolnay@gmail.com>2024-02-19 15:16:56 -0800
committerDavid Tolnay <dtolnay@gmail.com>2024-02-19 15:16:56 -0800
commit7eef56220b05c70be3756a3baa98fe19c4093d02 (patch)
treebb53a5f06d8aeedba18546d88341ae59656910b2
parent2391e93f728074f0cf6207342c22bf0a5178fad7 (diff)
downloadcxx-7eef56220b05c70be3756a3baa98fe19c4093d02.tar.gz
Release 1.0.117
-rw-r--r--Cargo.toml8
-rw-r--r--flags/Cargo.toml2
-rw-r--r--gen/build/Cargo.toml2
-rw-r--r--gen/build/src/lib.rs2
-rw-r--r--gen/cmd/Cargo.toml2
-rw-r--r--gen/lib/Cargo.toml2
-rw-r--r--gen/lib/src/lib.rs2
-rw-r--r--macro/Cargo.toml2
-rw-r--r--src/lib.rs2
9 files changed, 12 insertions, 12 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 55dd12c1..e6172854 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "cxx"
-version = "1.0.116"
+version = "1.0.117"
authors = ["David Tolnay <dtolnay@gmail.com>"]
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.116", path = "macro" }
+cxxbridge-macro = { version = "=1.0.117", path = "macro" }
link-cplusplus = "1.0.9"
[build-dependencies]
cc = "1.0.79"
-cxxbridge-flags = { version = "=1.0.116", path = "flags", default-features = false }
+cxxbridge-flags = { version = "=1.0.117", path = "flags", default-features = false }
[dev-dependencies]
-cxx-build = { version = "=1.0.116", path = "gen/build" }
+cxx-build = { version = "=1.0.117", 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 c8b64a0e..59da1175 100644
--- a/flags/Cargo.toml
+++ b/flags/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "cxxbridge-flags"
-version = "1.0.116"
+version = "1.0.117"
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 16ff54eb..ad0fe37f 100644
--- a/gen/build/Cargo.toml
+++ b/gen/build/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "cxx-build"
-version = "1.0.116"
+version = "1.0.117"
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 15a3085c..3893d27a 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.116")]
+#![doc(html_root_url = "https://docs.rs/cxx-build/1.0.117")]
#![allow(
clippy::cast_sign_loss,
clippy::default_trait_access,
diff --git a/gen/cmd/Cargo.toml b/gen/cmd/Cargo.toml
index 7fb59d87..e4f23111 100644
--- a/gen/cmd/Cargo.toml
+++ b/gen/cmd/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "cxxbridge-cmd"
-version = "1.0.116"
+version = "1.0.117"
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 970303a8..c76e9a00 100644
--- a/gen/lib/Cargo.toml
+++ b/gen/lib/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "cxx-gen"
-version = "0.7.116"
+version = "0.7.117"
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 b243f4c6..88ee7abd 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.116")]
+#![doc(html_root_url = "https://docs.rs/cxx-gen/0.7.117")]
#![deny(missing_docs)]
#![allow(dead_code)]
#![allow(
diff --git a/macro/Cargo.toml b/macro/Cargo.toml
index da44334f..8f351a2e 100644
--- a/macro/Cargo.toml
+++ b/macro/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "cxxbridge-macro"
-version = "1.0.116"
+version = "1.0.117"
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 e9e1a4e1..7c606a18 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -364,7 +364,7 @@
//! </table>
#![no_std]
-#![doc(html_root_url = "https://docs.rs/cxx/1.0.116")]
+#![doc(html_root_url = "https://docs.rs/cxx/1.0.117")]
#![cfg_attr(doc_cfg, feature(doc_cfg))]
#![deny(
improper_ctypes,