Skip to content

Commit b3060c6

Browse files
committed
Release 0.5.3
1 parent bc21c75 commit b3060c6

File tree

8 files changed

+18
-18
lines changed

8 files changed

+18
-18
lines changed

Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cxx"
3-
version = "0.5.2" # remember to update html_root_url
3+
version = "0.5.3" # remember to update html_root_url
44
authors = ["David Tolnay <[email protected]>"]
55
edition = "2018"
66
links = "cxxbridge05"
@@ -20,16 +20,16 @@ default = ["cxxbridge-flags/default"] # c++11
2020
"c++20" = ["cxxbridge-flags/c++20"]
2121

2222
[dependencies]
23-
cxxbridge-macro = { version = "=0.5.2", path = "macro" }
23+
cxxbridge-macro = { version = "=0.5.3", path = "macro" }
2424
link-cplusplus = "1.0"
2525

2626
[build-dependencies]
2727
cc = "1.0.49"
28-
cxxbridge-flags = { version = "=0.5.2", path = "flags", default-features = false }
28+
cxxbridge-flags = { version = "=0.5.3", path = "flags", default-features = false }
2929

3030
[dev-dependencies]
31-
cxx-build = { version = "=0.5.2", path = "gen/build" }
32-
cxx-gen = { version = "0.5", path = "gen/lib" }
31+
cxx-build = { version = "=0.5.3", path = "gen/build" }
32+
cxx-gen = { version = "0.6", path = "gen/lib" }
3333
cxx-test-suite = { version = "0", path = "tests/ffi" }
3434
rustversion = "1.0"
3535
trybuild = { version = "1.0.33", features = ["diff"] }

flags/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cxxbridge-flags"
3-
version = "0.5.2"
3+
version = "0.5.3"
44
authors = ["David Tolnay <[email protected]>"]
55
edition = "2018"
66
license = "MIT OR Apache-2.0"

gen/build/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cxx-build"
3-
version = "0.5.2"
3+
version = "0.5.3"
44
authors = ["David Tolnay <[email protected]>"]
55
edition = "2018"
66
license = "MIT OR Apache-2.0"
@@ -20,7 +20,7 @@ scratch = "1.0"
2020
syn = { version = "1.0.20", default-features = false, features = ["parsing", "printing", "clone-impls", "full"] }
2121

2222
[dev-dependencies]
23-
cxx-gen = { version = "0.5", path = "../lib" }
23+
cxx-gen = { version = "0.6", path = "../lib" }
2424

2525
[package.metadata.docs.rs]
2626
targets = ["x86_64-unknown-linux-gnu"]

gen/cmd/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cxxbridge-cmd"
3-
version = "0.5.2"
3+
version = "0.5.3"
44
authors = ["David Tolnay <[email protected]>"]
55
edition = "2018"
66
license = "MIT OR Apache-2.0"

gen/lib/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cxx-gen"
3-
version = "0.5.2"
3+
version = "0.6.0"
44
authors = ["Adrian Taylor <[email protected]>"]
55
edition = "2018"
66
license = "MIT OR Apache-2.0"

macro/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cxxbridge-macro"
3-
version = "0.5.2"
3+
version = "0.5.3"
44
authors = ["David Tolnay <[email protected]>"]
55
edition = "2018"
66
license = "MIT OR Apache-2.0"

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -349,7 +349,7 @@
349349
//! [https://github.com/dtolnay/cxx]: https://github.com/dtolnay/cxx
350350
351351
#![no_std]
352-
#![doc(html_root_url = "https://docs.rs/cxx/0.5.2")]
352+
#![doc(html_root_url = "https://docs.rs/cxx/0.5.3")]
353353
#![deny(improper_ctypes)]
354354
#![allow(non_camel_case_types)]
355355
#![allow(

third-party/Cargo.lock

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)