Skip to content

Commit 5878605

Browse files
committedMar 3, 2019
Release v0.9.0
1 parent 0b824c9 commit 5878605

File tree

32 files changed

+126
-122
lines changed

32 files changed

+126
-122
lines changed
 

‎CHANGELOG.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,11 @@
22

33

44
## [Unreleased]
5-
[Unreleased]: https://github.com/open-i18n/rust-unic/compare/v0.8.0...HEAD
5+
[Unreleased]: https://github.com/open-i18n/rust-unic/compare/v0.9.0...HEAD
6+
7+
8+
## [v0.9.0] - 2019-03-02
9+
[v0.9.0]: https://github.com/open-i18n/rust-unic/compare/v0.8.0...v0.9.0
610

711
### Add
812

‎README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ In `Cargo.toml`:
167167

168168
```toml
169169
[dependencies]
170-
unic = "0.8.0" # This has Unicode 10.0.0 data and algorithms
170+
unic = "0.9.0" # This has Unicode 10.0.0 data and algorithms
171171
```
172172

173173
And in `main.rs`:

‎apps/cli/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "unic-cli"
3-
version = "0.8.0"
3+
version = "0.9.0"
44
edition = "2018"
55
authors = ["The UNIC Project Developers"]
66
repository = "https://github.com/open-i18n/rust-unic/"
@@ -11,7 +11,7 @@ categories = ["internationalization", "text-processing", "parsing", "command-lin
1111
readme = "README.md"
1212

1313
[dependencies]
14-
unic = { path = "../../unic/", version = "0.8.0" }
14+
unic = { path = "../../unic/", version = "0.9.0" }
1515

1616
clap = "2.29"
1717
lazy_static = "1.0"

‎gen/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ description = "UNIC — Table Generation"
99
publish = false
1010

1111
[dependencies]
12-
unic-char-range = { path = "../unic/char/range/", version = "0.8.0" }
12+
unic-char-range = { path = "../unic/char/range/", version = "0.9.0" }
1313

1414
# Command line argument parsing
1515
clap = "2.29"

‎unic/Cargo.toml

+10-10
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "unic"
3-
version = "0.8.0"
3+
version = "0.9.0"
44
edition = "2018"
55
authors = ["The UNIC Project Developers"]
66
repository = "https://github.com/open-i18n/rust-unic/"
@@ -20,17 +20,17 @@ bench_it = ["unic-bidi/bench_it"]
2020
serde = ["unic-bidi/serde"]
2121

2222
[dependencies]
23-
unic-bidi = { path = "bidi/", version = "0.8.0" }
24-
unic-char = { path = "char/", version = "0.8.0", features = ["std"] }
25-
unic-common = { path = "common/", version = "0.8.0" }
26-
unic-emoji = { path = "emoji/", version = "0.8.0" }
27-
unic-idna = { path = "idna/", version = "0.8.0" }
28-
unic-normal = { path = "normal/", version = "0.8.0" }
29-
unic-segment = { path = "segment/", version = "0.8.0" }
30-
unic-ucd = { path = "ucd/", version = "0.8.0" }
23+
unic-bidi = { path = "bidi/", version = "0.9.0" }
24+
unic-char = { path = "char/", version = "0.9.0", features = ["std"] }
25+
unic-common = { path = "common/", version = "0.9.0" }
26+
unic-emoji = { path = "emoji/", version = "0.9.0" }
27+
unic-idna = { path = "idna/", version = "0.9.0" }
28+
unic-normal = { path = "normal/", version = "0.9.0" }
29+
unic-segment = { path = "segment/", version = "0.9.0" }
30+
unic-ucd = { path = "ucd/", version = "0.9.0" }
3131

3232
[dev-dependencies]
33-
unic-char-range = { path = "char/range/", version = "0.8.0" }
33+
unic-char-range = { path = "char/range/", version = "0.9.0" }
3434

3535
[badges]
3636
maintenance = { status = "actively-developed" }

‎unic/bidi/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "unic-bidi"
3-
version = "0.8.0"
3+
version = "0.9.0"
44
edition = "2018"
55
authors = ["The UNIC Project Developers"]
66
repository = "https://github.com/open-i18n/rust-unic/"
@@ -23,12 +23,12 @@ bench_it = []
2323
[dependencies]
2424
matches = "0.1"
2525
serde = { version = ">=0.8, <2.0", optional = true, features = ["derive"] }
26-
unic-ucd-bidi = { path = "../ucd/bidi/", version = "0.8.0" }
26+
unic-ucd-bidi = { path = "../ucd/bidi/", version = "0.9.0" }
2727

2828
[dev-dependencies]
2929
serde_test = ">=0.8, <2.0"
30-
unic-char-property = { path = "../char/property/", version = "0.8.0" }
31-
unic-ucd-version = { path = "../ucd/version/", version = "0.8.0" }
30+
unic-char-property = { path = "../char/property/", version = "0.9.0" }
31+
unic-ucd-version = { path = "../ucd/version/", version = "0.9.0" }
3232

3333
[badges]
3434
maintenance = { status = "actively-developed" }

‎unic/char/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "unic-char"
3-
version = "0.8.0"
3+
version = "0.9.0"
44
edition = "2018"
55
authors = ["The UNIC Project Developers"]
66
repository = "https://github.com/open-i18n/rust-unic/"
@@ -18,9 +18,9 @@ default = []
1818
std = ["unic-char-range/std"]
1919

2020
[dependencies]
21-
unic-char-basics = { path = "basics/", version = "0.8.0" }
22-
unic-char-property = { path = "property/", version = "0.8.0" }
23-
unic-char-range = { path = "range/", version = "0.8.0" }
21+
unic-char-basics = { path = "basics/", version = "0.9.0" }
22+
unic-char-property = { path = "property/", version = "0.9.0" }
23+
unic-char-range = { path = "range/", version = "0.9.0" }
2424

2525
[badges]
2626
maintenance = { status = "actively-developed" }

‎unic/char/basics/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "unic-char-basics"
3-
version = "0.8.0"
3+
version = "0.9.0"
44
edition = "2018"
55
authors = ["The UNIC Project Developers"]
66
repository = "https://github.com/open-i18n/rust-unic/"
@@ -14,7 +14,7 @@ readme = "README.md"
1414
exclude = []
1515

1616
[dev-dependencies]
17-
unic-char-range = { path = "../range/", version = "0.8.0" }
17+
unic-char-range = { path = "../range/", version = "0.9.0" }
1818

1919
[badges]
2020
maintenance = { status = "actively-developed" }

‎unic/char/property/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "unic-char-property"
3-
version = "0.8.0"
3+
version = "0.9.0"
44
edition = "2018"
55
authors = ["The UNIC Project Developers"]
66
repository = "https://github.com/open-i18n/rust-unic/"
@@ -13,7 +13,7 @@ categories = ["internationalization", "text-processing", "parsing"]
1313
exclude = []
1414

1515
[dependencies]
16-
unic-char-range = { path = "../range/", version = "0.8.0" }
16+
unic-char-range = { path = "../range/", version = "0.9.0" }
1717

1818
[badges]
1919
maintenance = { status = "actively-developed" }

‎unic/char/range/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "unic-char-range"
3-
version = "0.8.0"
3+
version = "0.9.0"
44
edition = "2018"
55
authors = ["The UNIC Project Developers"]
66
repository = "https://github.com/open-i18n/rust-unic/"

‎unic/common/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "unic-common"
3-
version = "0.8.0"
3+
version = "0.9.0"
44
edition = "2018"
55
authors = ["The UNIC Project Developers"]
66
repository = "https://github.com/open-i18n/rust-unic/"

‎unic/emoji/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "unic-emoji"
3-
version = "0.8.0"
3+
version = "0.9.0"
44
edition = "2018"
55
authors = ["The UNIC Project Developers"]
66
repository = "https://github.com/open-i18n/rust-unic/"
@@ -13,7 +13,7 @@ categories = ["internationalization", "text-processing", "parsing", "rendering"]
1313
exclude = []
1414

1515
[dependencies]
16-
unic-emoji-char = { path = "char/", version = "0.8.0" }
16+
unic-emoji-char = { path = "char/", version = "0.9.0" }
1717

1818
[badges]
1919
maintenance = { status = "actively-developed" }

‎unic/emoji/char/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "unic-emoji-char"
3-
version = "0.8.0"
3+
version = "0.9.0"
44
edition = "2018"
55
authors = ["The UNIC Project Developers"]
66
repository = "https://github.com/open-i18n/rust-unic/"
@@ -13,9 +13,9 @@ categories = ["internationalization", "text-processing", "parsing", "rendering"]
1313
exclude = []
1414

1515
[dependencies]
16-
unic-char-property = { path = "../../char/property/", version = "0.8.0" }
17-
unic-char-range = { path = "../../char/range", version = "0.8.0" }
18-
unic-ucd-version = { path = "../../ucd/version/", version = "0.8.0" }
16+
unic-char-property = { path = "../../char/property/", version = "0.9.0" }
17+
unic-char-range = { path = "../../char/range", version = "0.9.0" }
18+
unic-ucd-version = { path = "../../ucd/version/", version = "0.9.0" }
1919

2020
[badges]
2121
maintenance = { status = "actively-developed" }

‎unic/idna/Cargo.toml

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "unic-idna"
3-
version = "0.8.0"
3+
version = "0.9.0"
44
edition = "2018"
55
authors = ["The UNIC Project Developers"]
66
repository = "https://github.com/open-i18n/rust-unic/"
@@ -15,12 +15,12 @@ exclude = ["tests/conformance_tests.rs"]
1515

1616
[dependencies]
1717
matches = "0.1"
18-
unic-idna-punycode = { path = "punycode/", version = "0.8.0" }
19-
unic-idna-mapping = { path = "mapping/", version = "0.8.0" }
20-
unic-normal = { path = "../normal/", version = "0.8.0" }
21-
unic-ucd-bidi = { path = "../ucd/bidi/", version = "0.8.0" }
22-
unic-ucd-normal = { path = "../ucd/normal/", version = "0.8.0" }
23-
unic-ucd-version = { path = "../ucd/version/", version = "0.8.0" }
18+
unic-idna-punycode = { path = "punycode/", version = "0.9.0" }
19+
unic-idna-mapping = { path = "mapping/", version = "0.9.0" }
20+
unic-normal = { path = "../normal/", version = "0.9.0" }
21+
unic-ucd-bidi = { path = "../ucd/bidi/", version = "0.9.0" }
22+
unic-ucd-normal = { path = "../ucd/normal/", version = "0.9.0" }
23+
unic-ucd-version = { path = "../ucd/version/", version = "0.9.0" }
2424

2525
[badges]
2626
maintenance = { status = "actively-developed" }

‎unic/idna/mapping/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "unic-idna-mapping"
3-
version = "0.8.0"
3+
version = "0.9.0"
44
edition = "2018"
55
authors = ["The UNIC Project Developers"]
66
repository = "https://github.com/open-i18n/rust-unic/"
@@ -13,9 +13,9 @@ categories = ["internationalization", "text-processing", "parsing", "rendering"]
1313
exclude = []
1414

1515
[dependencies]
16-
unic-char-range = { path = "../../char/range/", version = "0.8.0" }
17-
unic-char-property = { path = "../../char/property/", version = "0.8.0" }
18-
unic-ucd-version = { path = "../../ucd/version/", version = "0.8.0" }
16+
unic-char-range = { path = "../../char/range/", version = "0.9.0" }
17+
unic-char-property = { path = "../../char/property/", version = "0.9.0" }
18+
unic-ucd-version = { path = "../../ucd/version/", version = "0.9.0" }
1919

2020
[badges]
2121
maintenance = { status = "actively-developed" }

‎unic/idna/punycode/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "unic-idna-punycode"
3-
version = "0.8.0"
3+
version = "0.9.0"
44
edition = "2018"
55
authors = ["The UNIC Project Developers"]
66
repository = "https://github.com/open-i18n/rust-unic/"

‎unic/normal/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "unic-normal"
3-
version = "0.8.0"
3+
version = "0.9.0"
44
edition = "2018"
55
authors = ["The UNIC Project Developers"]
66
repository = "https://github.com/open-i18n/rust-unic/"
@@ -14,10 +14,10 @@ readme = "README.md"
1414
exclude = ["tests/conformance_tests.rs"]
1515

1616
[dependencies]
17-
unic-ucd-normal = { path = "../ucd/normal/", version = "0.8.0" }
17+
unic-ucd-normal = { path = "../ucd/normal/", version = "0.9.0" }
1818

1919
[dev-dependencies]
20-
unic-ucd-version = { path = "../ucd/version/", version = "0.8.0" }
20+
unic-ucd-version = { path = "../ucd/version/", version = "0.9.0" }
2121

2222
[badges]
2323
maintenance = { status = "actively-developed" }

‎unic/segment/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "unic-segment"
3-
version = "0.8.0"
3+
version = "0.9.0"
44
edition = "2018"
55
authors = ["The UNIC Project Developers"]
66
repository = "https://github.com/open-i18n/rust-unic/"
@@ -14,11 +14,11 @@ readme = "README.md"
1414
exclude = []
1515

1616
[dependencies]
17-
unic-ucd-segment = { path = "../ucd/segment/", version = "0.8.0" }
17+
unic-ucd-segment = { path = "../ucd/segment/", version = "0.9.0" }
1818

1919
[dev-dependencies]
2020
quickcheck = "0.6"
21-
unic-ucd-common = { path = "../ucd/common/", version = "0.8.0" }
21+
unic-ucd-common = { path = "../ucd/common/", version = "0.9.0" }
2222

2323
[badges]
2424
maintenance = { status = "actively-developed" }

‎unic/ucd/Cargo.toml

+17-17
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "unic-ucd"
3-
version = "0.8.0"
3+
version = "0.9.0"
44
edition = "2018"
55
authors = ["The UNIC Project Developers"]
66
repository = "https://github.com/open-i18n/rust-unic/"
@@ -14,25 +14,25 @@ readme = "README.md"
1414
exclude = []
1515

1616
[dependencies]
17-
unic-ucd-age = { path = "age/", version = "0.8.0" }
18-
unic-ucd-bidi = { path = "bidi/", version = "0.8.0" }
19-
unic-ucd-block = { path = "block/", version = "0.8.0" }
20-
unic-ucd-case = { path = "case/", version = "0.8.0" }
21-
unic-ucd-category = { path = "category/", version = "0.8.0" }
22-
unic-ucd-common = { path = "common/", version = "0.8.0" }
23-
unic-ucd-hangul = { path = "hangul/", version= "0.8.0" }
24-
unic-ucd-ident = { path = "ident/", version = "0.8.0" }
25-
unic-ucd-name = { path = "name/", version = "0.8.0" }
26-
unic-ucd-name_aliases = { path = "name_aliases/", version = "0.8.0" }
27-
unic-ucd-normal = { path = "normal/", version = "0.8.0", features = ["unic-ucd-category"] }
28-
unic-ucd-segment = { path = "segment/", version = "0.8.0" }
29-
unic-ucd-version = { path = "version/", version = "0.8.0" }
17+
unic-ucd-age = { path = "age/", version = "0.9.0" }
18+
unic-ucd-bidi = { path = "bidi/", version = "0.9.0" }
19+
unic-ucd-block = { path = "block/", version = "0.9.0" }
20+
unic-ucd-case = { path = "case/", version = "0.9.0" }
21+
unic-ucd-category = { path = "category/", version = "0.9.0" }
22+
unic-ucd-common = { path = "common/", version = "0.9.0" }
23+
unic-ucd-hangul = { path = "hangul/", version= "0.9.0" }
24+
unic-ucd-ident = { path = "ident/", version = "0.9.0" }
25+
unic-ucd-name = { path = "name/", version = "0.9.0" }
26+
unic-ucd-name_aliases = { path = "name_aliases/", version = "0.9.0" }
27+
unic-ucd-normal = { path = "normal/", version = "0.9.0", features = ["unic-ucd-category"] }
28+
unic-ucd-segment = { path = "segment/", version = "0.9.0" }
29+
unic-ucd-version = { path = "version/", version = "0.9.0" }
3030

3131
[dev-dependencies]
3232
matches = "0.1"
33-
unic-char-basics = { path = "../char/basics/", version = "0.8.0" }
34-
unic-char-property = { path = "../char/property/", version = "0.8.0" }
35-
unic-char-range = { path = "../char/range/", version = "0.8.0" }
33+
unic-char-basics = { path = "../char/basics/", version = "0.9.0" }
34+
unic-char-property = { path = "../char/property/", version = "0.9.0" }
35+
unic-char-range = { path = "../char/range/", version = "0.9.0" }
3636

3737
[badges]
3838
maintenance = { status = "actively-developed" }

‎unic/ucd/age/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "unic-ucd-age"
3-
version = "0.8.0"
3+
version = "0.9.0"
44
edition = "2018"
55
authors = ["The UNIC Project Developers"]
66
repository = "https://github.com/open-i18n/rust-unic/"
@@ -13,9 +13,9 @@ categories = ["internationalization", "text-processing", "parsing", "rendering"]
1313
exclude = []
1414

1515
[dependencies]
16-
unic-char-property = { path = "../../char/property/", version = "0.8.0" }
17-
unic-char-range = { path = "../../char/range", version = "0.8.0" }
18-
unic-ucd-version = { path = "../version/", version = "0.8.0" }
16+
unic-char-property = { path = "../../char/property/", version = "0.9.0" }
17+
unic-char-range = { path = "../../char/range", version = "0.9.0" }
18+
unic-ucd-version = { path = "../version/", version = "0.9.0" }
1919

2020
[badges]
2121
maintenance = { status = "actively-developed" }

‎unic/ucd/bidi/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "unic-ucd-bidi"
3-
version = "0.8.0"
3+
version = "0.9.0"
44
edition = "2018"
55
authors = ["The UNIC Project Developers"]
66
repository = "https://github.com/open-i18n/rust-unic/"
@@ -13,9 +13,9 @@ categories = ["internationalization", "text-processing", "parsing", "rendering"]
1313
exclude = []
1414

1515
[dependencies]
16-
unic-char-property = { path = "../../char/property/", version = "0.8.0" }
17-
unic-char-range = { path = "../../char/range", version = "0.8.0" }
18-
unic-ucd-version = { path = "../version/", version = "0.8.0" }
16+
unic-char-property = { path = "../../char/property/", version = "0.9.0" }
17+
unic-char-range = { path = "../../char/range", version = "0.9.0" }
18+
unic-ucd-version = { path = "../version/", version = "0.9.0" }
1919

2020
[badges]
2121
maintenance = { status = "actively-developed" }

‎unic/ucd/block/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "unic-ucd-block"
3-
version = "0.8.0"
3+
version = "0.9.0"
44
edition = "2018"
55
authors = ["The UNIC Project Developers"]
66
repository = "https://github.com/open-i18n/rust-unic/"
@@ -13,9 +13,9 @@ categories = ["internationalization", "text-processing", "parsing", "rendering"]
1313
exclude = []
1414

1515
[dependencies]
16-
unic-char-property = { path = "../../char/property/", version = "0.8.0" }
17-
unic-char-range = { path = "../../char/range/", version = "0.8.0" }
18-
unic-ucd-version = { path = "../version/", version = "0.8.0" }
16+
unic-char-property = { path = "../../char/property/", version = "0.9.0" }
17+
unic-char-range = { path = "../../char/range/", version = "0.9.0" }
18+
unic-ucd-version = { path = "../version/", version = "0.9.0" }
1919

2020
[badges]
2121
maintenance = { status = "actively-developed" }

‎unic/ucd/case/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "unic-ucd-case"
3-
version = "0.8.0"
3+
version = "0.9.0"
44
edition = "2018"
55
authors = ["The UNIC Project Developers"]
66
repository = "https://github.com/open-i18n/rust-unic/"
@@ -13,9 +13,9 @@ categories = ["internationalization", "text-processing", "parsing", "rendering"]
1313
exclude = []
1414

1515
[dependencies]
16-
unic-char-property = { path = "../../char/property/", version = "0.8.0" }
17-
unic-char-range = { path = "../../char/range/", version = "0.8.0" }
18-
unic-ucd-version = { path = "../version/", version = "0.8.0" }
16+
unic-char-property = { path = "../../char/property/", version = "0.9.0" }
17+
unic-char-range = { path = "../../char/range/", version = "0.9.0" }
18+
unic-ucd-version = { path = "../version/", version = "0.9.0" }
1919

2020
[badges]
2121
maintenance = { status = "actively-developed" }

‎unic/ucd/category/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "unic-ucd-category"
3-
version = "0.8.0"
3+
version = "0.9.0"
44
edition = "2018"
55
authors = ["The UNIC Project Developers"]
66
repository = "https://github.com/open-i18n/rust-unic/"
@@ -14,9 +14,9 @@ exclude = []
1414

1515
[dependencies]
1616
matches = "0.1"
17-
unic-char-property = { path = "../../char/property/", version = "0.8.0" }
18-
unic-char-range = { path = "../../char/range", version = "0.8.0" }
19-
unic-ucd-version = { path = "../version/", version = "0.8.0" }
17+
unic-char-property = { path = "../../char/property/", version = "0.9.0" }
18+
unic-char-range = { path = "../../char/range", version = "0.9.0" }
19+
unic-ucd-version = { path = "../version/", version = "0.9.0" }
2020

2121
[badges]
2222
maintenance = { status = "actively-developed" }

‎unic/ucd/common/Cargo.toml

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "unic-ucd-common"
3-
version = "0.8.0"
3+
version = "0.9.0"
44
edition = "2018"
55
authors = ["The UNIC Project Developers"]
66
repository = "https://github.com/open-i18n/rust-unic/"
@@ -13,12 +13,12 @@ categories = ["internationalization", "text-processing", "parsing", "rendering"]
1313
exclude = []
1414

1515
[dependencies]
16-
unic-char-property = { path = "../../char/property/", version = "0.8.0" }
17-
unic-char-range = { path = "../../char/range", version = "0.8.0" }
18-
unic-ucd-version = { path = "../version/", version = "0.8.0" }
16+
unic-char-property = { path = "../../char/property/", version = "0.9.0" }
17+
unic-char-range = { path = "../../char/range", version = "0.9.0" }
18+
unic-ucd-version = { path = "../version/", version = "0.9.0" }
1919

2020
[dev-dependencies]
21-
unic-ucd-category = { path = "../category/", version = "0.8.0" }
21+
unic-ucd-category = { path = "../category/", version = "0.9.0" }
2222

2323
[badges]
2424
maintenance = { status = "actively-developed" }

‎unic/ucd/hangul/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "unic-ucd-hangul"
3-
version = "0.8.0"
3+
version = "0.9.0"
44
edition = "2018"
55
authors = ["The UNIC Project Developers"]
66
repository = "https://github.com/open-i18n/rust-unic/"
@@ -13,7 +13,7 @@ categories = ["internationalization", "text-processing", "parsing", "rendering"]
1313
exclude = []
1414

1515
[dependencies]
16-
unic-ucd-version = { path = "../version/", version = "0.8.0" }
16+
unic-ucd-version = { path = "../version/", version = "0.9.0" }
1717

1818
[badges]
1919
maintenance = { status = "actively-developed" }

‎unic/ucd/ident/Cargo.toml

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "unic-ucd-ident"
3-
version = "0.8.0"
3+
version = "0.9.0"
44
edition = "2018"
55
authors = ["The UNIC Project Developers"]
66
repository = "https://github.com/open-i18n/rust-unic/"
@@ -20,12 +20,12 @@ xid = []
2020
id = []
2121

2222
[dependencies]
23-
unic-char-property = { path = "../../char/property/", version = "0.8.0" }
24-
unic-char-range = { path = "../../char/range", version = "0.8.0" }
25-
unic-ucd-version = { path = "../version/", version = "0.8.0" }
23+
unic-char-property = { path = "../../char/property/", version = "0.9.0" }
24+
unic-char-range = { path = "../../char/range", version = "0.9.0" }
25+
unic-ucd-version = { path = "../version/", version = "0.9.0" }
2626

2727
[dev-dependencies]
28-
unic-ucd-category = { path = "../category/", version = "0.8.0" }
28+
unic-ucd-category = { path = "../category/", version = "0.9.0" }
2929
regex = "0.2"
3030
matches = "0.1"
3131

‎unic/ucd/name/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "unic-ucd-name"
3-
version = "0.8.0"
3+
version = "0.9.0"
44
edition = "2018"
55
authors = ["The UNIC Project Developers"]
66
repository = "https://github.com/open-i18n/rust-unic/"
@@ -13,9 +13,9 @@ categories = ["internationalization", "text-processing", "parsing", "rendering"]
1313
exclude = []
1414

1515
[dependencies]
16-
unic-ucd-version = { path = "../version/", version = "0.8.0" }
17-
unic-ucd-hangul = { path = "../hangul/", version = "0.8.0" }
18-
unic-char-property = { path = "../../char/property/", version = "0.8.0" }
16+
unic-ucd-version = { path = "../version/", version = "0.9.0" }
17+
unic-ucd-hangul = { path = "../hangul/", version = "0.9.0" }
18+
unic-char-property = { path = "../../char/property/", version = "0.9.0" }
1919

2020
[badges]
2121
maintenance = { status = "actively-developed" }

‎unic/ucd/name_aliases/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "unic-ucd-name_aliases"
3-
version = "0.8.0"
3+
version = "0.9.0"
44
edition = "2018"
55
authors = ["The UNIC Project Developers"]
66
repository = "https://github.com/open-i18n/rust-unic/"
@@ -13,8 +13,8 @@ categories = ["internationalization", "text-processing", "parsing", "rendering"]
1313
exclude = []
1414

1515
[dependencies]
16-
unic-ucd-version = { path = "../version/", version = "0.8.0" }
17-
unic-char-property = { path = "../../char/property/", version = "0.8.0" }
16+
unic-ucd-version = { path = "../version/", version = "0.9.0" }
17+
unic-char-property = { path = "../../char/property/", version = "0.9.0" }
1818

1919
[badges]
2020
maintenance = { status = "actively-developed" }

‎unic/ucd/normal/Cargo.toml

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "unic-ucd-normal"
3-
version = "0.8.0"
3+
version = "0.9.0"
44
edition = "2018"
55
authors = ["The UNIC Project Developers"]
66
repository = "https://github.com/open-i18n/rust-unic/"
@@ -13,14 +13,14 @@ categories = ["internationalization", "text-processing", "parsing", "rendering"]
1313
exclude = ["tests/conformance_tests.rs"]
1414

1515
[dependencies]
16-
unic-char-property = { path = "../../char/property/", version = "0.8.0" }
17-
unic-char-range = { path = "../../char/range", version = "0.8.0" }
18-
unic-ucd-category = { path = "../category/", version = "0.8.0", optional = true }
19-
unic-ucd-hangul = { path = "../hangul/", version = "0.8.0" }
20-
unic-ucd-version = { path = "../version/", version = "0.8.0" }
16+
unic-char-property = { path = "../../char/property/", version = "0.9.0" }
17+
unic-char-range = { path = "../../char/range", version = "0.9.0" }
18+
unic-ucd-category = { path = "../category/", version = "0.9.0", optional = true }
19+
unic-ucd-hangul = { path = "../hangul/", version = "0.9.0" }
20+
unic-ucd-version = { path = "../version/", version = "0.9.0" }
2121

2222
[dev-dependencies]
23-
unic-ucd-category = { path = "../category/", version = "0.8.0" }
23+
unic-ucd-category = { path = "../category/", version = "0.9.0" }
2424

2525
[features]
2626
default = []

‎unic/ucd/segment/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "unic-ucd-segment"
3-
version = "0.8.0"
3+
version = "0.9.0"
44
edition = "2018"
55
authors = ["The UNIC Project Developers"]
66
repository = "https://github.com/open-i18n/rust-unic/"
@@ -13,9 +13,9 @@ categories = ["internationalization", "text-processing", "parsing", "rendering"]
1313
exclude = []
1414

1515
[dependencies]
16-
unic-char-property = { path = "../../char/property/", version = "0.8.0" }
17-
unic-char-range = { path = "../../char/range", version = "0.8.0" }
18-
unic-ucd-version = { path = "../version/", version = "0.8.0" }
16+
unic-char-property = { path = "../../char/property/", version = "0.9.0" }
17+
unic-char-range = { path = "../../char/range", version = "0.9.0" }
18+
unic-ucd-version = { path = "../version/", version = "0.9.0" }
1919

2020
[badges]
2121
maintenance = { status = "actively-developed" }

‎unic/ucd/version/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "unic-ucd-version"
3-
version = "0.8.0"
3+
version = "0.9.0"
44
edition = "2018"
55
authors = ["The UNIC Project Developers"]
66
repository = "https://github.com/open-i18n/rust-unic/"
@@ -13,7 +13,7 @@ categories = ["internationalization", "text-processing", "parsing", "rendering"]
1313
exclude = []
1414

1515
[dependencies]
16-
unic-common = { path = "../../common/", version = "0.8.0" }
16+
unic-common = { path = "../../common/", version = "0.9.0" }
1717

1818
[badges]
1919
maintenance = { status = "actively-developed" }

0 commit comments

Comments
 (0)
Please sign in to comment.