Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 4baae9f

Browse files
authored
Merge pull request #12 from matklad/v0.1.1
V0.2.0
2 parents 31a29c1 + 1bed61b commit 4baae9f

File tree

3 files changed

+16
-4
lines changed

3 files changed

+16
-4
lines changed

Cargo.toml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,26 @@
11
[package]
22

33
name = "unicode-xid"
4-
version = "0.1.0"
4+
version = "0.2.0"
55
authors = ["erick.tryzelaar <[email protected]>",
66
"kwantam <[email protected]>",
77
]
88

99
homepage = "https://github.com/unicode-rs/unicode-xid"
1010
repository = "https://github.com/unicode-rs/unicode-xid"
1111
documentation = "https://unicode-rs.github.io/unicode-xid"
12-
license = "MIT/Apache-2.0"
12+
license = "MIT OR Apache-2.0"
1313
keywords = ["text", "unicode", "xid"]
1414
readme = "README.md"
1515
description = """
1616
Determine whether characters have the XID_Start
1717
or XID_Continue properties according to
1818
Unicode Standard Annex #31.
1919
"""
20+
exclude = ["/scripts/*", "/.travis.yml"]
2021

21-
exclude = [ "target/*", "Cargo.lock" ]
22+
[badges]
23+
travis-ci = { repository = "unicode-rs/unicode-xid" }
2224

2325
[features]
2426
default = []

README.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,3 +32,13 @@ to your `Cargo.toml`:
3232
[dependencies]
3333
unicode-xid = "0.1.0"
3434
```
35+
36+
# changelog
37+
38+
## 0.2.0
39+
40+
- Update to Unicode 12.1.0.
41+
42+
## 0.1.0
43+
44+
- Initial release.

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
html_favicon_url = "https://unicode-rs.github.io/unicode-rs_sm.png")]
4343

4444
#![no_std]
45-
#![cfg_attr(feature = "bench", feature(test, rustc_private))]
45+
#![cfg_attr(feature = "bench", feature(test, unicode_internals))]
4646

4747
#[cfg(test)]
4848
#[macro_use]

0 commit comments

Comments
 (0)