From e62d6fd02e9eadc63565417a29912875f5f8a8e8 Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Mon, 19 Dec 2022 10:02:44 -0800 Subject: [PATCH] Release 0.1.14 --- Cargo.toml | 4 ++-- impl/Cargo.toml | 2 +- impl/src/lib.rs | 2 +- src/lib.rs | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index ce736b1..0b5da43 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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 "] description = "Concatenate identifiers in a macro invocation" documentation = "https://docs.rs/mashup" @@ -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"] diff --git a/impl/Cargo.toml b/impl/Cargo.toml index 159a151..116362c 100644 --- a/impl/Cargo.toml +++ b/impl/Cargo.toml @@ -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 "] license = "MIT OR Apache-2.0" description = "Concatenate identifiers in a macro invocation" diff --git a/impl/src/lib.rs b/impl/src/lib.rs index ccee33b..e9432ef 100644 --- a/impl/src/lib.rs +++ b/impl/src/lib.rs @@ -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))] diff --git a/src/lib.rs b/src/lib.rs index 8a17795..4ce29ad 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -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))]