Skip to content

Commit

Permalink
Merge pull request #12 from matklad/v0.1.1
Browse files Browse the repository at this point in the history
V0.2.0
  • Loading branch information
Manishearth authored Jul 25, 2019
2 parents 31a29c1 + 1bed61b commit 4baae9f
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 4 deletions.
8 changes: 5 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,24 +1,26 @@
[package]

name = "unicode-xid"
version = "0.1.0"
version = "0.2.0"
authors = ["erick.tryzelaar <[email protected]>",
"kwantam <[email protected]>",
]

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 = """
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 = []
Expand Down
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down

0 comments on commit 4baae9f

Please sign in to comment.