diff --git a/Cargo.toml b/Cargo.toml index 8be03e2..984a73a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "linkme" -version = "0.3.26" +version = "0.3.27" 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.26", path = "impl" } +linkme-impl = { version = "=0.3.27", path = "impl" } [dev-dependencies] once_cell = "1.16" diff --git a/impl/Cargo.toml b/impl/Cargo.toml index 88128dc..af22383 100644 --- a/impl/Cargo.toml +++ b/impl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "linkme-impl" -version = "0.3.26" +version = "0.3.27" 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 835994f..5480697 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.26")] +#![doc(html_root_url = "https://docs.rs/linkme/0.3.27")] #![deny(unsafe_op_in_unsafe_fn)] #![allow( clippy::doc_markdown,