Skip to content

Commit c7060d4

Browse files
committed
Release 1.0.80
1 parent 5e1511e commit c7060d4

File tree

8 files changed

+16
-16
lines changed

8 files changed

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

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

3333
[dev-dependencies]
34-
cxx-build = { version = "=1.0.79", path = "gen/build" }
34+
cxx-build = { version = "=1.0.80", 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.79"
3+
version = "1.0.80"
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.79"
3+
version = "1.0.80"
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/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.79"
3+
version = "1.0.80"
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.79"
3+
version = "0.7.80"
44
authors = ["Adrian Taylor <[email protected]>"]
55
categories = ["development-tools::ffi"]
66
description = "C++ code generator for integrating `cxx` crate into higher level tools."

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.79"
3+
version = "1.0.80"
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.79")]
367+
#![doc(html_root_url = "https://docs.rs/cxx/1.0.80")]
368368
#![deny(improper_ctypes, improper_ctypes_definitions, missing_docs)]
369369
#![cfg_attr(not(no_unsafe_op_in_unsafe_fn_lint), deny(unsafe_op_in_unsafe_fn))]
370370
#![cfg_attr(no_unsafe_op_in_unsafe_fn_lint, allow(unused_unsafe))]

third-party/Cargo.lock

+6-6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)