Skip to content

Commit e685ad0

Browse files
committed
Release 1.0.185
1 parent ac07eec commit e685ad0

File tree

9 files changed

+13
-13
lines changed

9 files changed

+13
-13
lines changed

Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cxx"
3-
version = "1.0.184"
3+
version = "1.0.185"
44
authors = ["David Tolnay <[email protected]>"]
55
categories = ["development-tools::ffi", "api-bindings", "no-std"]
66
description = "Safe interop between Rust and C++"
@@ -23,13 +23,13 @@ alloc = []
2323
std = ["alloc", "foldhash/std"]
2424

2525
[dependencies]
26-
cxxbridge-macro = { version = "=1.0.184", path = "macro" }
26+
cxxbridge-macro = { version = "=1.0.185", path = "macro" }
2727
foldhash = { version = "0.2", default-features = false }
2828
link-cplusplus = "1.0.11"
2929

3030
[build-dependencies]
3131
cc = "1.0.101"
32-
cxxbridge-flags = { version = "=1.0.184", path = "flags", default-features = false }
32+
cxxbridge-flags = { version = "=1.0.185", path = "flags", default-features = false }
3333

3434
[dev-dependencies]
3535
cc = "1.0.101"
@@ -47,8 +47,8 @@ trybuild = { version = "1.0.108", features = ["diff"] }
4747

4848
# Disallow incompatible version appearing in the same lockfile.
4949
[target.'cfg(any())'.build-dependencies]
50-
cxx-build = { version = "=1.0.184", path = "gen/build" }
51-
cxxbridge-cmd = { version = "=1.0.184", path = "gen/cmd" }
50+
cxx-build = { version = "=1.0.185", path = "gen/build" }
51+
cxxbridge-cmd = { version = "=1.0.185", path = "gen/cmd" }
5252

5353
[workspace]
5454
members = ["demo", "flags", "gen/build", "gen/cmd", "gen/lib", "macro", "tests/ffi"]

flags/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cxxbridge-flags"
3-
version = "1.0.184"
3+
version = "1.0.185"
44
authors = ["David Tolnay <[email protected]>"]
55
categories = ["development-tools::ffi", "compilers"]
66
description = "Compiler configuration of the `cxx` crate (implementation detail)"

gen/build/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cxx-build"
3-
version = "1.0.184"
3+
version = "1.0.185"
44
authors = ["David Tolnay <[email protected]>"]
55
categories = ["development-tools::build-utils", "development-tools::ffi"]
66
description = "C++ code generator for integrating `cxx` crate into a Cargo build."

gen/build/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
//! $ cxxbridge src/main.rs > path/to/mybridge.cc
4545
//! ```
4646
47-
#![doc(html_root_url = "https://docs.rs/cxx-build/1.0.184")]
47+
#![doc(html_root_url = "https://docs.rs/cxx-build/1.0.185")]
4848
#![cfg_attr(not(check_cfg), allow(unexpected_cfgs))]
4949
#![allow(
5050
clippy::cast_sign_loss,

gen/cmd/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cxxbridge-cmd"
3-
version = "1.0.184"
3+
version = "1.0.185"
44
authors = ["David Tolnay <[email protected]>"]
55
categories = ["development-tools::build-utils", "development-tools::ffi"]
66
description = "C++ code generator for integrating `cxx` crate into a non-Cargo build."

gen/lib/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cxx-gen"
3-
version = "0.7.184"
3+
version = "0.7.185"
44
authors = ["Adrian Taylor <[email protected]>"]
55
categories = ["development-tools::ffi"]
66
description = "C++ code generator for integrating `cxx` crate into higher level tools."

gen/lib/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
//! [dtolnay/cxx#235]: https://github.com/dtolnay/cxx/issues/235
88
//! [https://github.com/google/autocxx]: https://github.com/google/autocxx
99
10-
#![doc(html_root_url = "https://docs.rs/cxx-gen/0.7.184")]
10+
#![doc(html_root_url = "https://docs.rs/cxx-gen/0.7.185")]
1111
#![deny(missing_docs)]
1212
#![expect(dead_code)]
1313
#![cfg_attr(not(check_cfg), allow(unexpected_cfgs))]

macro/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cxxbridge-macro"
3-
version = "1.0.184"
3+
version = "1.0.185"
44
authors = ["David Tolnay <[email protected]>"]
55
categories = ["development-tools::ffi"]
66
description = "Implementation detail of the `cxx` crate."

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -363,7 +363,7 @@
363363
//! </table>
364364
365365
#![no_std]
366-
#![doc(html_root_url = "https://docs.rs/cxx/1.0.184")]
366+
#![doc(html_root_url = "https://docs.rs/cxx/1.0.185")]
367367
#![cfg_attr(docsrs, feature(doc_cfg))]
368368
#![deny(
369369
improper_ctypes,

0 commit comments

Comments
 (0)