From 1f3627267ad224f715a4f3801d44f56f801405ff Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Sat, 7 Jan 2023 12:18:32 -0800 Subject: [PATCH] Release 1.0.86 --- Cargo.toml | 8 ++++---- flags/Cargo.toml | 2 +- gen/build/Cargo.toml | 2 +- gen/cmd/Cargo.toml | 2 +- gen/lib/Cargo.toml | 2 +- macro/Cargo.toml | 2 +- src/lib.rs | 2 +- 7 files changed, 10 insertions(+), 10 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 9e80bda62..7d85adcf4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cxx" -version = "1.0.85" # remember to update html_root_url +version = "1.0.86" # remember to update html_root_url authors = ["David Tolnay "] categories = ["development-tools::ffi", "api-bindings", "no-std"] description = "Safe interop between Rust and C++" @@ -23,15 +23,15 @@ alloc = [] std = ["alloc"] [dependencies] -cxxbridge-macro = { version = "=1.0.85", path = "macro" } +cxxbridge-macro = { version = "=1.0.86", path = "macro" } link-cplusplus = "1.0" [build-dependencies] cc = "1.0.49" -cxxbridge-flags = { version = "=1.0.85", path = "flags", default-features = false } +cxxbridge-flags = { version = "=1.0.86", path = "flags", default-features = false } [dev-dependencies] -cxx-build = { version = "=1.0.85", path = "gen/build" } +cxx-build = { version = "=1.0.86", path = "gen/build" } cxx-gen = { version = "0.7", path = "gen/lib" } cxx-test-suite = { version = "0", path = "tests/ffi" } rustversion = "1.0" diff --git a/flags/Cargo.toml b/flags/Cargo.toml index 8958481c3..09e9cd6ba 100644 --- a/flags/Cargo.toml +++ b/flags/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cxxbridge-flags" -version = "1.0.85" +version = "1.0.86" authors = ["David Tolnay "] categories = ["development-tools::ffi", "compilers"] description = "Compiler configuration of the `cxx` crate (implementation detail)" diff --git a/gen/build/Cargo.toml b/gen/build/Cargo.toml index ea19af890..c80e87a62 100644 --- a/gen/build/Cargo.toml +++ b/gen/build/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cxx-build" -version = "1.0.85" +version = "1.0.86" authors = ["David Tolnay "] categories = ["development-tools::build-utils", "development-tools::ffi"] description = "C++ code generator for integrating `cxx` crate into a Cargo build." diff --git a/gen/cmd/Cargo.toml b/gen/cmd/Cargo.toml index 39d9a6173..2840364d2 100644 --- a/gen/cmd/Cargo.toml +++ b/gen/cmd/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cxxbridge-cmd" -version = "1.0.85" +version = "1.0.86" authors = ["David Tolnay "] categories = ["development-tools::build-utils", "development-tools::ffi"] description = "C++ code generator for integrating `cxx` crate into a non-Cargo build." diff --git a/gen/lib/Cargo.toml b/gen/lib/Cargo.toml index df8c8558f..3f8f8d599 100644 --- a/gen/lib/Cargo.toml +++ b/gen/lib/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cxx-gen" -version = "0.7.85" +version = "0.7.86" authors = ["Adrian Taylor "] categories = ["development-tools::ffi"] description = "C++ code generator for integrating `cxx` crate into higher level tools." diff --git a/macro/Cargo.toml b/macro/Cargo.toml index ed230388f..ebe3fbccb 100644 --- a/macro/Cargo.toml +++ b/macro/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cxxbridge-macro" -version = "1.0.85" +version = "1.0.86" authors = ["David Tolnay "] categories = ["development-tools::ffi"] description = "Implementation detail of the `cxx` crate." diff --git a/src/lib.rs b/src/lib.rs index 3ddd887db..581a9ffbc 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -364,7 +364,7 @@ //! #![no_std] -#![doc(html_root_url = "https://docs.rs/cxx/1.0.85")] +#![doc(html_root_url = "https://docs.rs/cxx/1.0.86")] #![deny(improper_ctypes, improper_ctypes_definitions, missing_docs)] #![cfg_attr(not(no_unsafe_op_in_unsafe_fn_lint), deny(unsafe_op_in_unsafe_fn))] #![cfg_attr(no_unsafe_op_in_unsafe_fn_lint, allow(unused_unsafe))]