Release 1.0.48

This commit is contained in:
David Tolnay 2021-04-28 17:48:57 -07:00
parent a0d52c25c9
commit a134ecab9f
No known key found for this signature in database
GPG Key ID: F9BA143B95FF6D82
8 changed files with 16 additions and 16 deletions

View File

@ -1,6 +1,6 @@
[package]
name = "cxx"
version = "1.0.47" # remember to update html_root_url
version = "1.0.48" # remember to update html_root_url
authors = ["David Tolnay <dtolnay@gmail.com>"]
edition = "2018"
links = "cxxbridge1"
@ -21,15 +21,15 @@ default = ["cxxbridge-flags/default"] # c++11
"c++20" = ["cxxbridge-flags/c++20"]
[dependencies]
cxxbridge-macro = { version = "=1.0.47", path = "macro" }
cxxbridge-macro = { version = "=1.0.48", path = "macro" }
link-cplusplus = "1.0"
[build-dependencies]
cc = "1.0.49"
cxxbridge-flags = { version = "=1.0.47", path = "flags", default-features = false }
cxxbridge-flags = { version = "=1.0.48", path = "flags", default-features = false }
[dev-dependencies]
cxx-build = { version = "=1.0.47", path = "gen/build" }
cxx-build = { version = "=1.0.48", path = "gen/build" }
cxx-gen = { version = "0.7", path = "gen/lib" }
cxx-test-suite = { version = "0", path = "tests/ffi" }
rustversion = "1.0"

View File

@ -1,6 +1,6 @@
[package]
name = "cxxbridge-flags"
version = "1.0.47"
version = "1.0.48"
authors = ["David Tolnay <dtolnay@gmail.com>"]
edition = "2018"
license = "MIT OR Apache-2.0"

View File

@ -1,6 +1,6 @@
[package]
name = "cxx-build"
version = "1.0.47"
version = "1.0.48"
authors = ["David Tolnay <dtolnay@gmail.com>"]
edition = "2018"
license = "MIT OR Apache-2.0"

View File

@ -1,6 +1,6 @@
[package]
name = "cxxbridge-cmd"
version = "1.0.47"
version = "1.0.48"
authors = ["David Tolnay <dtolnay@gmail.com>"]
edition = "2018"
license = "MIT OR Apache-2.0"

View File

@ -1,6 +1,6 @@
[package]
name = "cxx-gen"
version = "0.7.47"
version = "0.7.48"
authors = ["Adrian Taylor <adetaylor@chromium.org>"]
edition = "2018"
license = "MIT OR Apache-2.0"

View File

@ -1,6 +1,6 @@
[package]
name = "cxxbridge-macro"
version = "1.0.47"
version = "1.0.48"
authors = ["David Tolnay <dtolnay@gmail.com>"]
edition = "2018"
license = "MIT OR Apache-2.0"

View File

@ -364,7 +364,7 @@
//! </table>
#![no_std]
#![doc(html_root_url = "https://docs.rs/cxx/1.0.47")]
#![doc(html_root_url = "https://docs.rs/cxx/1.0.48")]
#![deny(improper_ctypes, improper_ctypes_definitions, missing_docs)]
#![allow(non_camel_case_types)]
#![allow(

12
third-party/Cargo.lock generated vendored
View File

@ -101,7 +101,7 @@ dependencies = [
[[package]]
name = "cxx"
version = "1.0.47"
version = "1.0.48"
dependencies = [
"cc",
"cxx-build",
@ -116,7 +116,7 @@ dependencies = [
[[package]]
name = "cxx-build"
version = "1.0.47"
version = "1.0.48"
dependencies = [
"cc",
"codespan-reporting",
@ -131,7 +131,7 @@ dependencies = [
[[package]]
name = "cxx-gen"
version = "0.7.47"
version = "0.7.48"
dependencies = [
"cc",
"codespan-reporting",
@ -151,7 +151,7 @@ dependencies = [
[[package]]
name = "cxxbridge-cmd"
version = "1.0.47"
version = "1.0.48"
dependencies = [
"clap",
"codespan-reporting",
@ -162,11 +162,11 @@ dependencies = [
[[package]]
name = "cxxbridge-flags"
version = "1.0.47"
version = "1.0.48"
[[package]]
name = "cxxbridge-macro"
version = "1.0.47"
version = "1.0.48"
dependencies = [
"clang-ast",
"cxx",