Skip to content

Commit

Permalink
Release 1.0.88
Browse files Browse the repository at this point in the history
  • Loading branch information
dtolnay committed Jan 27, 2023
1 parent e5b79ad commit f33abb9
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 10 deletions.
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cxx"
version = "1.0.87" # remember to update html_root_url
version = "1.0.88" # remember to update html_root_url
authors = ["David Tolnay <dtolnay@gmail.com>"]
categories = ["development-tools::ffi", "api-bindings", "no-std"]
description = "Safe interop between Rust and C++"
Expand All @@ -23,15 +23,15 @@ alloc = []
std = ["alloc"]

[dependencies]
cxxbridge-macro = { version = "=1.0.87", path = "macro" }
cxxbridge-macro = { version = "=1.0.88", path = "macro" }
link-cplusplus = "1.0"

[build-dependencies]
cc = "1.0.49"
cxxbridge-flags = { version = "=1.0.87", path = "flags", default-features = false }
cxxbridge-flags = { version = "=1.0.88", path = "flags", default-features = false }

[dev-dependencies]
cxx-build = { version = "=1.0.87", path = "gen/build" }
cxx-build = { version = "=1.0.88", path = "gen/build" }
cxx-gen = { version = "0.7", path = "gen/lib" }
cxx-test-suite = { version = "0", path = "tests/ffi" }
rustversion = "1.0"
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.87"
version = "1.0.88"
authors = ["David Tolnay <dtolnay@gmail.com>"]
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.87"
version = "1.0.88"
authors = ["David Tolnay <dtolnay@gmail.com>"]
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/cmd/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cxxbridge-cmd"
version = "1.0.87"
version = "1.0.88"
authors = ["David Tolnay <dtolnay@gmail.com>"]
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.87"
version = "0.7.88"
authors = ["Adrian Taylor <adetaylor@chromium.org>"]
categories = ["development-tools::ffi"]
description = "C++ code generator for integrating `cxx` crate into higher level tools."
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.87"
version = "1.0.88"
authors = ["David Tolnay <dtolnay@gmail.com>"]
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.87")]
#![doc(html_root_url = "https://docs.rs/cxx/1.0.88")]
#![deny(
improper_ctypes,
improper_ctypes_definitions,
Expand Down

0 comments on commit f33abb9

Please sign in to comment.