From 3c09b2b0edb0592a986401b1db5b4cdf850a711f Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Tue, 12 Nov 2024 12:35:27 -0800 Subject: [PATCH] Release 0.3.31 --- 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 ffca026..7ad3267 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "linkme" -version = "0.3.30" +version = "0.3.31" 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.30", path = "impl" } +linkme-impl = { version = "=0.3.31", path = "impl" } [dev-dependencies] once_cell = "1.16" diff --git a/impl/Cargo.toml b/impl/Cargo.toml index 31ff697..e72e5fc 100644 --- a/impl/Cargo.toml +++ b/impl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "linkme-impl" -version = "0.3.30" +version = "0.3.31" 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 c191db6..38444ff 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -134,7 +134,7 @@ //! #![no_std] -#![doc(html_root_url = "https://docs.rs/linkme/0.3.30")] +#![doc(html_root_url = "https://docs.rs/linkme/0.3.31")] #![deny(unsafe_op_in_unsafe_fn)] #![allow( clippy::doc_markdown,