Skip to content

Commit

Permalink
Release 0.3.23
Browse files Browse the repository at this point in the history
  • Loading branch information
dtolnay committed Feb 19, 2024
1 parent 3a0a070 commit 4cd6723
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "linkme"
version = "0.3.22"
version = "0.3.23"
authors = ["David Tolnay <dtolnay@gmail.com>"]
categories = ["development-tools::build-utils", "development-tools::procedural-macro-helpers", "no-std", "no-std::no-alloc"]
description = "Safe cross-platform linker shenanigans"
Expand All @@ -19,7 +19,7 @@ edition = "2015"
used_linker = ["linkme-impl/used_linker"]

[dependencies]
linkme-impl = { version = "=0.3.22", path = "impl" }
linkme-impl = { version = "=0.3.23", path = "impl" }

[dev-dependencies]
once_cell = "1.16"
Expand Down
2 changes: 1 addition & 1 deletion impl/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "linkme-impl"
version = "0.3.22"
version = "0.3.23"
authors = ["David Tolnay <dtolnay@gmail.com>"]
description = "Implementation detail of the linkme crate"
documentation = "https://docs.rs/linkme"
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@
//! </details>

#![no_std]
#![doc(html_root_url = "https://docs.rs/linkme/0.3.22")]
#![doc(html_root_url = "https://docs.rs/linkme/0.3.23")]
#![deny(unsafe_op_in_unsafe_fn)]
#![allow(
clippy::doc_markdown,
Expand Down

0 comments on commit 4cd6723

Please sign in to comment.