Release 0.5.5

This commit is contained in:
David Tolnay 2020-11-06 09:54:11 -08:00
parent 20668560bb
commit 7c5ce689a3
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 = "0.5.4" # remember to update html_root_url
version = "0.5.5" # remember to update html_root_url
authors = ["David Tolnay <dtolnay@gmail.com>"]
edition = "2018"
links = "cxxbridge05"
@ -20,15 +20,15 @@ default = ["cxxbridge-flags/default"] # c++11
"c++20" = ["cxxbridge-flags/c++20"]
[dependencies]
cxxbridge-macro = { version = "=0.5.4", path = "macro" }
cxxbridge-macro = { version = "=0.5.5", path = "macro" }
link-cplusplus = "1.0"
[build-dependencies]
cc = "1.0.49"
cxxbridge-flags = { version = "=0.5.4", path = "flags", default-features = false }
cxxbridge-flags = { version = "=0.5.5", path = "flags", default-features = false }
[dev-dependencies]
cxx-build = { version = "=0.5.4", path = "gen/build" }
cxx-build = { version = "=0.5.5", path = "gen/build" }
cxx-gen = { version = "0.6", 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 = "0.5.4"
version = "0.5.5"
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 = "0.5.4"
version = "0.5.5"
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 = "0.5.4"
version = "0.5.5"
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.6.1"
version = "0.6.2"
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 = "0.5.4"
version = "0.5.5"
authors = ["David Tolnay <dtolnay@gmail.com>"]
edition = "2018"
license = "MIT OR Apache-2.0"

View File

@ -349,7 +349,7 @@
//! [https://github.com/dtolnay/cxx]: https://github.com/dtolnay/cxx
#![no_std]
#![doc(html_root_url = "https://docs.rs/cxx/0.5.4")]
#![doc(html_root_url = "https://docs.rs/cxx/0.5.5")]
#![deny(improper_ctypes)]
#![allow(non_camel_case_types)]
#![allow(

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

@ -59,7 +59,7 @@ dependencies = [
[[package]]
name = "cxx"
version = "0.5.4"
version = "0.5.5"
dependencies = [
"cc",
"cxx-build",
@ -74,7 +74,7 @@ dependencies = [
[[package]]
name = "cxx-build"
version = "0.5.4"
version = "0.5.5"
dependencies = [
"cc",
"codespan-reporting",
@ -89,7 +89,7 @@ dependencies = [
[[package]]
name = "cxx-gen"
version = "0.6.1"
version = "0.6.2"
dependencies = [
"cc",
"codespan-reporting",
@ -109,7 +109,7 @@ dependencies = [
[[package]]
name = "cxxbridge-cmd"
version = "0.5.4"
version = "0.5.5"
dependencies = [
"clap",
"codespan-reporting",
@ -120,11 +120,11 @@ dependencies = [
[[package]]
name = "cxxbridge-flags"
version = "0.5.4"
version = "0.5.5"
[[package]]
name = "cxxbridge-macro"
version = "0.5.4"
version = "0.5.5"
dependencies = [
"cxx",
"proc-macro2",