Release 1.0.124
diff --git a/Cargo.toml b/Cargo.toml
index 2637d61..085e6bc 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "cxx"
-version = "1.0.123"
+version = "1.0.124"
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 @@
std = ["alloc"]
[dependencies]
-cxxbridge-macro = { version = "=1.0.123", path = "macro" }
+cxxbridge-macro = { version = "=1.0.124", path = "macro" }
link-cplusplus = "1.0.9"
[build-dependencies]
cc = "1.0.83"
-cxxbridge-flags = { version = "=1.0.123", path = "flags", default-features = false }
+cxxbridge-flags = { version = "=1.0.124", path = "flags", default-features = false }
[dev-dependencies]
-cxx-build = { version = "=1.0.123", path = "gen/build" }
+cxx-build = { version = "=1.0.124", 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 dacb8d2..8cc35dc 100644
--- a/flags/Cargo.toml
+++ b/flags/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "cxxbridge-flags"
-version = "1.0.123"
+version = "1.0.124"
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 e6c148e..4a44e14 100644
--- a/gen/build/Cargo.toml
+++ b/gen/build/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "cxx-build"
-version = "1.0.123"
+version = "1.0.124"
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 a8ccf92..7400af1 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.123")]
+#![doc(html_root_url = "https://docs.rs/cxx-build/1.0.124")]
#![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 b419063..17321f8 100644
--- a/gen/cmd/Cargo.toml
+++ b/gen/cmd/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "cxxbridge-cmd"
-version = "1.0.123"
+version = "1.0.124"
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 ced048e..e9a1a03 100644
--- a/gen/lib/Cargo.toml
+++ b/gen/lib/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "cxx-gen"
-version = "0.7.123"
+version = "0.7.124"
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 70878be..e9e30e9 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.123")]
+#![doc(html_root_url = "https://docs.rs/cxx-gen/0.7.124")]
#![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 0ec0c3b..879fc4b 100644
--- a/macro/Cargo.toml
+++ b/macro/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "cxxbridge-macro"
-version = "1.0.123"
+version = "1.0.124"
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 51f3cce..bf040ca 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.123")]
+#![doc(html_root_url = "https://docs.rs/cxx/1.0.124")]
#![cfg_attr(docsrs, feature(doc_cfg))]
#![deny(
improper_ctypes,