Skip to content

Commit

Permalink
Release 0.1.26
Browse files Browse the repository at this point in the history
  • Loading branch information
dtolnay committed Jul 21, 2023
1 parent c1a8ae9 commit 146c58f
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "no-panic"
version = "0.1.25"
version = "0.1.26"
authors = ["David Tolnay <dtolnay@gmail.com>"]
categories = ["no-std", "no-std::no-alloc"]
description = "Attribute macro to require that the compiler prove a function can't ever panic."
Expand Down
2 changes: 1 addition & 1 deletion noexcept-impl/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "noexcept-impl"
version = "0.0.1"
version = "0.0.2"
authors = ["David Tolnay <dtolnay@gmail.com>"]
description = "Implementation detail of the `noexcept` crate"
edition = "2021"
Expand Down
4 changes: 2 additions & 2 deletions noexcept/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "noexcept"
version = "0.0.1"
version = "0.0.2"
authors = ["David Tolnay <dtolnay@gmail.com>"]
categories = ["no-std", "no-std::no-alloc"]
description = "Attribute macro equivalent to C++'s noexcept specifier"
Expand All @@ -10,7 +10,7 @@ license = "MIT OR Apache-2.0"
repository = "https://github.com/dtolnay/no-panic"

[dependencies]
noexcept-impl = { version = "0.0.1", path = "../noexcept-impl" }
noexcept-impl = { version = "0.0.2", path = "../noexcept-impl" }

[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@
//! [Kixunil]: https://github.com/Kixunil
//! [`dont_panic`]: https://github.com/Kixunil/dont_panic
#![doc(html_root_url = "https://docs.rs/no-panic/0.1.25")]
#![doc(html_root_url = "https://docs.rs/no-panic/0.1.26")]
#![allow(
clippy::doc_markdown,
clippy::match_same_arms,
Expand Down

0 comments on commit 146c58f

Please sign in to comment.