From 3e64fdbfce78bfbd2eb97bdbdc50ce4d62c9831b Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Mon, 3 Mar 2025 16:14:58 -0800 Subject: [PATCH] Release 1.0.26 --- Cargo.toml | 2 +- src/lib.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 467923a8..ff91eb8e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "semver" -version = "1.0.25" +version = "1.0.26" authors = ["David Tolnay "] categories = ["data-structures", "no-std"] description = "Parser and evaluator for Cargo's flavor of Semantic Versioning" diff --git a/src/lib.rs b/src/lib.rs index c9303463..f96adb5e 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -60,7 +60,7 @@ //! //! [Specifying Dependencies]: https://doc.rust-lang.org/cargo/reference/specifying-dependencies.html -#![doc(html_root_url = "https://docs.rs/semver/1.0.25")] +#![doc(html_root_url = "https://docs.rs/semver/1.0.26")] #![cfg_attr(docsrs, feature(doc_cfg))] #![cfg_attr(all(not(feature = "std"), not(no_alloc_crate)), no_std)] #![cfg_attr(not(no_unsafe_op_in_unsafe_fn_lint), deny(unsafe_op_in_unsafe_fn))]