Skip to content

Commit

Permalink
Release 1.0.61
Browse files Browse the repository at this point in the history
  • Loading branch information
dtolnay committed Dec 31, 2021
1 parent 5a7f93b commit 8aa54e6
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 16 deletions.
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cxx"
version = "1.0.60" # remember to update html_root_url
version = "1.0.61" # remember to update html_root_url
authors = ["David Tolnay <[email protected]>"]
edition = "2018"
rust-version = "1.48"
Expand All @@ -24,15 +24,15 @@ alloc = []
std = ["alloc"]

[dependencies]
cxxbridge-macro = { version = "=1.0.60", path = "macro" }
cxxbridge-macro = { version = "=1.0.61", path = "macro" }
link-cplusplus = "1.0"

[build-dependencies]
cc = "1.0.49"
cxxbridge-flags = { version = "=1.0.60", path = "flags", default-features = false }
cxxbridge-flags = { version = "=1.0.61", path = "flags", default-features = false }

[dev-dependencies]
cxx-build = { version = "=1.0.60", path = "gen/build" }
cxx-build = { version = "=1.0.61", path = "gen/build" }
cxx-gen = { version = "0.7", path = "gen/lib" }
cxx-test-suite = { version = "0", path = "tests/ffi" }
rustversion = "1.0"
Expand Down
2 changes: 1 addition & 1 deletion flags/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cxxbridge-flags"
version = "1.0.60"
version = "1.0.61"
authors = ["David Tolnay <[email protected]>"]
edition = "2018"
rust-version = "1.48"
Expand Down
2 changes: 1 addition & 1 deletion gen/build/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cxx-build"
version = "1.0.60"
version = "1.0.61"
authors = ["David Tolnay <[email protected]>"]
edition = "2018"
rust-version = "1.48"
Expand Down
2 changes: 1 addition & 1 deletion gen/cmd/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cxxbridge-cmd"
version = "1.0.60"
version = "1.0.61"
authors = ["David Tolnay <[email protected]>"]
edition = "2018"
rust-version = "1.48"
Expand Down
2 changes: 1 addition & 1 deletion gen/lib/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cxx-gen"
version = "0.7.60"
version = "0.7.61"
authors = ["Adrian Taylor <[email protected]>"]
edition = "2018"
rust-version = "1.48"
Expand Down
2 changes: 1 addition & 1 deletion macro/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cxxbridge-macro"
version = "1.0.60"
version = "1.0.61"
authors = ["David Tolnay <[email protected]>"]
edition = "2018"
rust-version = "1.48"
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -364,7 +364,7 @@
//! </table>

#![no_std]
#![doc(html_root_url = "https://docs.rs/cxx/1.0.60")]
#![doc(html_root_url = "https://docs.rs/cxx/1.0.61")]
#![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))]
Expand Down
12 changes: 6 additions & 6 deletions third-party/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 8aa54e6

Please sign in to comment.