From a540b1e6670b32cf78582a5601b77d7fa69b5d79 Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Wed, 16 Aug 2023 18:14:44 -0700 Subject: [PATCH] Release 0.3.15 --- Cargo.toml | 4 ++-- impl/Cargo.toml | 2 +- src/lib.rs | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 1b52d07..f22c4af 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "linkme" -version = "0.3.14" +version = "0.3.15" authors = ["David Tolnay "] categories = ["development-tools::build-utils", "development-tools::procedural-macro-helpers", "no-std", "no-std::no-alloc"] description = "Safe cross-platform linker shenanigans" @@ -19,7 +19,7 @@ edition = "2015" used_linker = ["linkme-impl/used_linker"] [dependencies] -linkme-impl = { version = "=0.3.14", path = "impl" } +linkme-impl = { version = "=0.3.15", path = "impl" } [dev-dependencies] once_cell = "1.16" diff --git a/impl/Cargo.toml b/impl/Cargo.toml index 82de4f0..57519c4 100644 --- a/impl/Cargo.toml +++ b/impl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "linkme-impl" -version = "0.3.14" +version = "0.3.15" authors = ["David Tolnay "] description = "Implementation detail of the linkme crate" documentation = "https://docs.rs/linkme" diff --git a/src/lib.rs b/src/lib.rs index ab4765f..27979de 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -106,7 +106,7 @@ //! ``` #![no_std] -#![doc(html_root_url = "https://docs.rs/linkme/0.3.14")] +#![doc(html_root_url = "https://docs.rs/linkme/0.3.15")] #![allow( clippy::doc_markdown, clippy::empty_enum,