Skip to content

Commit ba6590d

Browse files
committed
Release 1.0.149
1 parent 474f046 commit ba6590d

File tree

9 files changed

+13
-13
lines changed

9 files changed

+13
-13
lines changed

Cargo.toml

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

2525
[dependencies]
26-
cxxbridge-macro = { version = "=1.0.148", path = "macro" }
26+
cxxbridge-macro = { version = "=1.0.149", path = "macro" }
2727
foldhash = { version = "0.1", default-features = false }
2828
link-cplusplus = "1.0.9"
2929

3030
[build-dependencies]
3131
cc = "1.0.83"
32-
cxxbridge-flags = { version = "=1.0.148", path = "flags", default-features = false }
32+
cxxbridge-flags = { version = "=1.0.149", path = "flags", default-features = false }
3333

3434
[dev-dependencies]
35-
cxx-build = { version = "=1.0.148", path = "gen/build" }
35+
cxx-build = { version = "=1.0.149", path = "gen/build" }
3636
cxx-gen = { version = "0.7", path = "gen/lib" }
3737
cxx-test-suite = { version = "0", path = "tests/ffi" }
3838
rustversion = "1.0.13"
3939
trybuild = { version = "1.0.81", features = ["diff"] }
4040

4141
# Disallow incompatible cxxbridge-cmd version appearing in the same lockfile.
4242
[target.'cfg(any())'.build-dependencies]
43-
cxxbridge-cmd = { version = "=1.0.148", path = "gen/cmd" }
43+
cxxbridge-cmd = { version = "=1.0.149", path = "gen/cmd" }
4444

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

flags/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cxxbridge-flags"
3-
version = "1.0.148"
3+
version = "1.0.149"
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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cxx-build"
3-
version = "1.0.148"
3+
version = "1.0.149"
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

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
//! $ cxxbridge src/main.rs > path/to/mybridge.cc
4646
//! ```
4747
48-
#![doc(html_root_url = "https://docs.rs/cxx-build/1.0.148")]
48+
#![doc(html_root_url = "https://docs.rs/cxx-build/1.0.149")]
4949
#![cfg_attr(not(check_cfg), allow(unexpected_cfgs))]
5050
#![allow(
5151
clippy::cast_sign_loss,

gen/cmd/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cxxbridge-cmd"
3-
version = "1.0.148"
3+
version = "1.0.149"
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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cxx-gen"
3-
version = "0.7.148"
3+
version = "0.7.149"
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

+1-1
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.148")]
10+
#![doc(html_root_url = "https://docs.rs/cxx-gen/0.7.149")]
1111
#![deny(missing_docs)]
1212
#![allow(dead_code)]
1313
#![cfg_attr(not(check_cfg), allow(unexpected_cfgs))]

macro/Cargo.toml

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

src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -364,7 +364,7 @@
364364
//! </table>
365365
366366
#![no_std]
367-
#![doc(html_root_url = "https://docs.rs/cxx/1.0.148")]
367+
#![doc(html_root_url = "https://docs.rs/cxx/1.0.149")]
368368
#![cfg_attr(docsrs, feature(doc_cfg))]
369369
#![deny(
370370
improper_ctypes,

0 commit comments

Comments
 (0)