Skip to content

Commit eb06f52

Browse files
committed
Release 1.0.106
1 parent ec7c118 commit eb06f52

File tree

9 files changed

+12
-12
lines changed

9 files changed

+12
-12
lines changed

Diff for: Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cxx"
3-
version = "1.0.105" # remember to update html_root_url
3+
version = "1.0.106" # remember to update html_root_url
44
authors = ["David Tolnay <[email protected]>"]
55
categories = ["development-tools::ffi", "api-bindings", "no-std"]
66
description = "Safe interop between Rust and C++"
@@ -23,15 +23,15 @@ alloc = []
2323
std = ["alloc"]
2424

2525
[dependencies]
26-
cxxbridge-macro = { version = "=1.0.105", path = "macro" }
26+
cxxbridge-macro = { version = "=1.0.106", path = "macro" }
2727
link-cplusplus = "1.0.9"
2828

2929
[build-dependencies]
3030
cc = "1.0.79"
31-
cxxbridge-flags = { version = "=1.0.105", path = "flags", default-features = false }
31+
cxxbridge-flags = { version = "=1.0.106", path = "flags", default-features = false }
3232

3333
[dev-dependencies]
34-
cxx-build = { version = "=1.0.105", path = "gen/build" }
34+
cxx-build = { version = "=1.0.106", path = "gen/build" }
3535
cxx-gen = { version = "0.7", path = "gen/lib" }
3636
cxx-test-suite = { version = "0", path = "tests/ffi" }
3737
rustversion = "1.0.13"

Diff for: 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.105"
3+
version = "1.0.106"
44
authors = ["David Tolnay <[email protected]>"]
55
categories = ["development-tools::ffi", "compilers"]
66
description = "Compiler configuration of the `cxx` crate (implementation detail)"

Diff for: 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.105"
3+
version = "1.0.106"
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."

Diff for: 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.105")]
48+
#![doc(html_root_url = "https://docs.rs/cxx-build/1.0.106")]
4949
#![allow(
5050
clippy::cast_sign_loss,
5151
clippy::default_trait_access,

Diff for: 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.105"
3+
version = "1.0.106"
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."

Diff for: 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.105"
3+
version = "0.7.106"
44
authors = ["Adrian Taylor <[email protected]>"]
55
categories = ["development-tools::ffi"]
66
description = "C++ code generator for integrating `cxx` crate into higher level tools."

Diff for: 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.105")]
10+
#![doc(html_root_url = "https://docs.rs/cxx-gen/0.7.106")]
1111
#![deny(missing_docs)]
1212
#![allow(dead_code)]
1313
#![allow(

Diff for: 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.105"
3+
version = "1.0.106"
44
authors = ["David Tolnay <[email protected]>"]
55
categories = ["development-tools::ffi"]
66
description = "Implementation detail of the `cxx` crate."

Diff for: 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.105")]
367+
#![doc(html_root_url = "https://docs.rs/cxx/1.0.106")]
368368
#![deny(
369369
improper_ctypes,
370370
improper_ctypes_definitions,

0 commit comments

Comments
 (0)