Release 0.2.5

This commit is contained in:
David Tolnay 2020-04-09 21:07:36 -07:00
parent eb0ac1a583
commit 5f1cc8aa44
No known key found for this signature in database
GPG Key ID: F9BA143B95FF6D82
5 changed files with 12 additions and 12 deletions

View File

@ -1,6 +1,6 @@
[package]
name = "cxx"
version = "0.2.4" # remember to update html_root_url
version = "0.2.5" # remember to update html_root_url
authors = ["David Tolnay <dtolnay@gmail.com>"]
edition = "2018"
links = "cxxbridge02"
@ -18,7 +18,7 @@ travis-ci = { repository = "dtolnay/cxx" }
anyhow = "1.0"
cc = "1.0.49"
codespan-reporting = "0.9"
cxxbridge-macro = { version = "=0.2.4", path = "macro" }
cxxbridge-macro = { version = "=0.2.5", path = "macro" }
link-cplusplus = "1.0"
proc-macro2 = { version = "1.0", features = ["span-locations"] }
quote = "1.0"

View File

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

View File

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

View File

@ -337,7 +337,7 @@
//!
//! [https://github.com/dtolnay/cxx]: https://github.com/dtolnay/cxx
#![doc(html_root_url = "https://docs.rs/cxx/0.2.4")]
#![doc(html_root_url = "https://docs.rs/cxx/0.2.5")]
#![deny(improper_ctypes)]
#![allow(
clippy::declare_interior_mutable_const,

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

@ -65,7 +65,7 @@ dependencies = [
[[package]]
name = "cxx"
version = "0.2.4"
version = "0.2.5"
dependencies = [
"anyhow",
"cc",
@ -90,7 +90,7 @@ dependencies = [
[[package]]
name = "cxxbridge-cmd"
version = "0.2.4"
version = "0.2.5"
dependencies = [
"anyhow",
"codespan-reporting",
@ -110,7 +110,7 @@ dependencies = [
[[package]]
name = "cxxbridge-macro"
version = "0.2.4"
version = "0.2.5"
dependencies = [
"cxx",
"proc-macro2",
@ -171,9 +171,9 @@ dependencies = [
[[package]]
name = "proc-macro-error"
version = "1.0.1"
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8931031034aa65c73f3f1a05c3ec0fa51287fcd06557ecf4e88b2768bdca375e"
checksum = "98e9e4b82e0ef281812565ea4751049f1bdcdfccda7d3f459f2e138a40c08678"
dependencies = [
"proc-macro-error-attr",
"proc-macro2",
@ -184,9 +184,9 @@ dependencies = [
[[package]]
name = "proc-macro-error-attr"
version = "1.0.1"
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2147536f412ee7ae5529364ed50172ca0220fd64591e236296f45f36b38b2f98"
checksum = "4f5444ead4e9935abd7f27dc51f7e852a0569ac888096d5ec2499470794e2e53"
dependencies = [
"proc-macro2",
"quote",