diff --git a/Cargo.toml b/Cargo.toml index 7f9cefe..e430b7f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "unicode-ident" -version = "1.0.9" +version = "1.0.10" 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 d016b80..4c6e296 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.9")] +#![doc(html_root_url = "https://docs.rs/unicode-ident/1.0.10")] #![allow(clippy::doc_markdown, clippy::must_use_candidate)] #[rustfmt::skip]