Skip to content

Commit f4abebe

Browse files
committed
Release 1.0.95
1 parent d0610e2 commit f4abebe

File tree

9 files changed

+12
-12
lines changed

9 files changed

+12
-12
lines changed

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.94" # remember to update html_root_url
3+
version = "1.0.95" # 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.94", path = "macro" }
26+
cxxbridge-macro = { version = "=1.0.95", path = "macro" }
2727
link-cplusplus = "1.0"
2828

2929
[build-dependencies]
3030
cc = "1.0.49"
31-
cxxbridge-flags = { version = "=1.0.94", path = "flags", default-features = false }
31+
cxxbridge-flags = { version = "=1.0.95", path = "flags", default-features = false }
3232

3333
[dev-dependencies]
34-
cxx-build = { version = "=1.0.94", path = "gen/build" }
34+
cxx-build = { version = "=1.0.95", 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"

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

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.94"
3+
version = "1.0.95"
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.94"
3+
version = "0.7.95"
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.94")]
10+
#![doc(html_root_url = "https://docs.rs/cxx-gen/0.7.95")]
1111
#![deny(missing_docs)]
1212
#![allow(dead_code)]
1313
#![allow(

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

0 commit comments

Comments
 (0)