From e34a369149a64064013c29f6c36e8f2bbc450656 Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Tue, 10 Sep 2024 20:29:16 -0700 Subject: [PATCH] Release 1.0.13 --- Cargo.toml | 2 +- src/lib.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 7341f67..4e0b1ba 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "unicode-ident" -version = "1.0.12" +version = "1.0.13" authors = ["David Tolnay "] categories = ["development-tools::procedural-macro-helpers", "no-std", "no-std::no-alloc"] description = "Determine whether characters have the XID_Start or XID_Continue properties according to Unicode Standard Annex #31" diff --git a/src/lib.rs b/src/lib.rs index 5a9e3b2..9abe491 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -242,7 +242,7 @@ //! this data structure is straight-line code with no need for branching. #![no_std] -#![doc(html_root_url = "https://docs.rs/unicode-ident/1.0.12")] +#![doc(html_root_url = "https://docs.rs/unicode-ident/1.0.13")] #![allow(clippy::doc_markdown, clippy::must_use_candidate)] #[rustfmt::skip]