Release 1.0.8

This commit is contained in:
David Tolnay 2023-03-05 15:56:34 -08:00
parent ba9f7812cc
commit c4f455414f
No known key found for this signature in database
GPG Key ID: F9BA143B95FF6D82
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
[package]
name = "unicode-ident"
version = "1.0.7"
version = "1.0.8"
authors = ["David Tolnay <dtolnay@gmail.com>"]
categories = ["development-tools::procedural-macro-helpers", "no-std"]
description = "Determine whether characters have the XID_Start or XID_Continue properties according to Unicode Standard Annex #31"

View File

@ -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.7")]
#![doc(html_root_url = "https://docs.rs/unicode-ident/1.0.8")]
#![allow(clippy::doc_markdown, clippy::must_use_candidate)]
#[rustfmt::skip]