diff --git a/Cargo.toml b/Cargo.toml index a069ada..d8b20b8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "unicode-ident" -version = "1.0.13" +version = "1.0.14" 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 9abe491..d822f93 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.13")] +#![doc(html_root_url = "https://docs.rs/unicode-ident/1.0.14")] #![allow(clippy::doc_markdown, clippy::must_use_candidate)] #[rustfmt::skip]