Skip to content

Commit 473f24a

Browse files
committed
Release 1.0.91
1 parent 580f29a commit 473f24a

File tree

7 files changed

+10
-10
lines changed

7 files changed

+10
-10
lines changed

Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cxx"
3-
version = "1.0.90" # remember to update html_root_url
3+
version = "1.0.91" # 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.90", path = "macro" }
26+
cxxbridge-macro = { version = "=1.0.91", path = "macro" }
2727
link-cplusplus = "1.0"
2828

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

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

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.90"
3+
version = "1.0.91"
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.90"
3+
version = "1.0.91"
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

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.90"
3+
version = "1.0.91"
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.90"
3+
version = "0.7.91"
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

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.90"
3+
version = "1.0.91"
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
@@ -364,7 +364,7 @@
364364
//! </table>
365365
366366
#![no_std]
367-
#![doc(html_root_url = "https://docs.rs/cxx/1.0.90")]
367+
#![doc(html_root_url = "https://docs.rs/cxx/1.0.91")]
368368
#![deny(
369369
improper_ctypes,
370370
improper_ctypes_definitions,

0 commit comments

Comments
 (0)