diff --git a/Cargo.toml b/Cargo.toml index b9b69b2..e813762 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "unicode-xid" -version = "0.1.0" +version = "0.2.0" authors = ["erick.tryzelaar ", "kwantam ", ] @@ -9,7 +9,7 @@ authors = ["erick.tryzelaar ", homepage = "https://github.com/unicode-rs/unicode-xid" repository = "https://github.com/unicode-rs/unicode-xid" documentation = "https://unicode-rs.github.io/unicode-xid" -license = "MIT/Apache-2.0" +license = "MIT OR Apache-2.0" keywords = ["text", "unicode", "xid"] readme = "README.md" description = """ @@ -17,8 +17,10 @@ Determine whether characters have the XID_Start or XID_Continue properties according to Unicode Standard Annex #31. """ +exclude = ["/scripts/*", "/.travis.yml"] -exclude = [ "target/*", "Cargo.lock" ] +[badges] +travis-ci = { repository = "unicode-rs/unicode-xid" } [features] default = [] diff --git a/README.md b/README.md index 4d84dc7..3c1ef2a 100644 --- a/README.md +++ b/README.md @@ -32,3 +32,13 @@ to your `Cargo.toml`: [dependencies] unicode-xid = "0.1.0" ``` + +# changelog + +## 0.2.0 + +- Update to Unicode 12.1.0. + +## 0.1.0 + +- Initial release. diff --git a/src/lib.rs b/src/lib.rs index 632ae38..7dd95ba 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -42,7 +42,7 @@ html_favicon_url = "https://unicode-rs.github.io/unicode-rs_sm.png")] #![no_std] -#![cfg_attr(feature = "bench", feature(test, rustc_private))] +#![cfg_attr(feature = "bench", feature(test, unicode_internals))] #[cfg(test)] #[macro_use]