diff --git a/Cargo.toml b/Cargo.toml index f22c4af..c1056f9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "linkme" -version = "0.3.15" +version = "0.3.16" 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.15", path = "impl" } +linkme-impl = { version = "=0.3.16", path = "impl" } [dev-dependencies] once_cell = "1.16" diff --git a/impl/Cargo.toml b/impl/Cargo.toml index 57519c4..ac95e91 100644 --- a/impl/Cargo.toml +++ b/impl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "linkme-impl" -version = "0.3.15" +version = "0.3.16" 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 46ae8d3..83c9965 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.15")] +#![doc(html_root_url = "https://docs.rs/linkme/0.3.16")] #![allow( clippy::doc_markdown, clippy::empty_enum,