Skip to content

Commit

Permalink
Release 1.0.132
Browse files Browse the repository at this point in the history
  • Loading branch information
dtolnay committed Dec 1, 2024
1 parent 53e6b97 commit 6362aac
Show file tree
Hide file tree
Showing 9 changed files with 13 additions and 13 deletions.
10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cxx"
version = "1.0.131"
version = "1.0.132"
authors = ["David Tolnay <[email protected]>"]
categories = ["development-tools::ffi", "api-bindings", "no-std"]
description = "Safe interop between Rust and C++"
Expand All @@ -23,24 +23,24 @@ alloc = []
std = ["alloc", "foldhash/std"]

[dependencies]
cxxbridge-macro = { version = "=1.0.131", path = "macro" }
cxxbridge-macro = { version = "=1.0.132", path = "macro" }
foldhash = { version = "0.1", default-features = false }
link-cplusplus = "1.0.9"

[build-dependencies]
cc = "1.0.83"
cxxbridge-flags = { version = "=1.0.131", path = "flags", default-features = false }
cxxbridge-flags = { version = "=1.0.132", path = "flags", default-features = false }

[dev-dependencies]
cxx-build = { version = "=1.0.131", path = "gen/build" }
cxx-build = { version = "=1.0.132", path = "gen/build" }
cxx-gen = { version = "0.7", path = "gen/lib" }
cxx-test-suite = { version = "0", path = "tests/ffi" }
rustversion = "1.0.13"
trybuild = { version = "1.0.81", features = ["diff"] }

# Disallow incompatible cxxbridge-cmd version appearing in the same lockfile.
[target.'cfg(any())'.dependencies]
cxxbridge-cmd = { version = "=1.0.131", path = "gen/cmd" }
cxxbridge-cmd = { version = "=1.0.132", path = "gen/cmd" }

[lib]
doc-scrape-examples = false
Expand Down
2 changes: 1 addition & 1 deletion flags/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cxxbridge-flags"
version = "1.0.131"
version = "1.0.132"
authors = ["David Tolnay <[email protected]>"]
categories = ["development-tools::ffi", "compilers"]
description = "Compiler configuration of the `cxx` crate (implementation detail)"
Expand Down
2 changes: 1 addition & 1 deletion gen/build/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cxx-build"
version = "1.0.131"
version = "1.0.132"
authors = ["David Tolnay <[email protected]>"]
categories = ["development-tools::build-utils", "development-tools::ffi"]
description = "C++ code generator for integrating `cxx` crate into a Cargo build."
Expand Down
2 changes: 1 addition & 1 deletion gen/build/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
//! $ cxxbridge src/main.rs > path/to/mybridge.cc
//! ```

#![doc(html_root_url = "https://docs.rs/cxx-build/1.0.131")]
#![doc(html_root_url = "https://docs.rs/cxx-build/1.0.132")]
#![cfg_attr(not(check_cfg), allow(unexpected_cfgs))]
#![allow(
clippy::cast_sign_loss,
Expand Down
2 changes: 1 addition & 1 deletion gen/cmd/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cxxbridge-cmd"
version = "1.0.131"
version = "1.0.132"
authors = ["David Tolnay <[email protected]>"]
categories = ["development-tools::build-utils", "development-tools::ffi"]
description = "C++ code generator for integrating `cxx` crate into a non-Cargo build."
Expand Down
2 changes: 1 addition & 1 deletion gen/lib/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cxx-gen"
version = "0.7.131"
version = "0.7.132"
authors = ["Adrian Taylor <[email protected]>"]
categories = ["development-tools::ffi"]
description = "C++ code generator for integrating `cxx` crate into higher level tools."
Expand Down
2 changes: 1 addition & 1 deletion gen/lib/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
//! [dtolnay/cxx#235]: https://github.com/dtolnay/cxx/issues/235
//! [https://github.com/google/autocxx]: https://github.com/google/autocxx

#![doc(html_root_url = "https://docs.rs/cxx-gen/0.7.131")]
#![doc(html_root_url = "https://docs.rs/cxx-gen/0.7.132")]
#![deny(missing_docs)]
#![allow(dead_code)]
#![cfg_attr(not(check_cfg), allow(unexpected_cfgs))]
Expand Down
2 changes: 1 addition & 1 deletion macro/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cxxbridge-macro"
version = "1.0.131"
version = "1.0.132"
authors = ["David Tolnay <[email protected]>"]
categories = ["development-tools::ffi"]
description = "Implementation detail of the `cxx` crate."
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -364,7 +364,7 @@
//! </table>

#![no_std]
#![doc(html_root_url = "https://docs.rs/cxx/1.0.131")]
#![doc(html_root_url = "https://docs.rs/cxx/1.0.132")]
#![cfg_attr(docsrs, feature(doc_cfg))]
#![deny(
improper_ctypes,
Expand Down

0 comments on commit 6362aac

Please sign in to comment.