Skip to content
This repository has been archived by the owner on Dec 27, 2022. It is now read-only.

Commit

Permalink
Release 0.1.14
Browse files Browse the repository at this point in the history
  • Loading branch information
dtolnay committed Dec 19, 2022
1 parent eb96c14 commit e62d6fd
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mashup"
version = "0.1.13+deprecated" # remember to update html_root_url
version = "0.1.14+deprecated" # remember to update html_root_url
authors = ["David Tolnay <[email protected]>"]
description = "Concatenate identifiers in a macro invocation"
documentation = "https://docs.rs/mashup"
Expand All @@ -9,7 +9,7 @@ repository = "https://github.com/dtolnay/mashup"

[dependencies]
proc-macro-hack = "0.4"
mashup-impl = { version = "=0.1.13", path = "impl" }
mashup-impl = { version = "=0.1.14", path = "impl" }

[workspace]
members = ["impl"]
Expand Down
2 changes: 1 addition & 1 deletion impl/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mashup-impl"
version = "0.1.13+deprecated" # remember to update html_root_url
version = "0.1.14+deprecated" # remember to update html_root_url
authors = ["David Tolnay <[email protected]>"]
license = "MIT OR Apache-2.0"
description = "Concatenate identifiers in a macro invocation"
Expand Down
2 changes: 1 addition & 1 deletion impl/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#![doc(html_root_url = "https://docs.rs/mashup-impl/0.1.13+deprecated")]
#![doc(html_root_url = "https://docs.rs/mashup-impl/0.1.14+deprecated")]
#![cfg_attr(feature = "cargo-clippy", allow(renamed_and_removed_lints))]
#![cfg_attr(feature = "cargo-clippy", allow(needless_borrowed_reference))]
#![cfg_attr(feature = "cargo-clippy", allow(needless_pass_by_value))]
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@
//! [#5]: https://github.com/dtolnay/mashup/issues/5
//! [#6]: https://github.com/dtolnay/mashup/issues/6

#![doc(html_root_url = "https://docs.rs/mashup/0.1.13+deprecated")]
#![doc(html_root_url = "https://docs.rs/mashup/0.1.14+deprecated")]
#![no_std]
#![cfg_attr(feature = "cargo-clippy", allow(renamed_and_removed_lints))]
#![cfg_attr(feature = "cargo-clippy", allow(doc_markdown))]
Expand Down

0 comments on commit e62d6fd

Please sign in to comment.