Skip to content

Commit

Permalink
Merge #161
Browse files Browse the repository at this point in the history
161: Bump version to 0.6.0 globally r=behnam a=behnam
  • Loading branch information
bors[bot] committed Sep 22, 2017
2 parents f5dcad2 + 41edc56 commit 224f71d
Show file tree
Hide file tree
Showing 21 changed files with 82 additions and 77 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ In `Cargo.toml`:

```toml
[dependencies]
unic = "0.5.0" # This has Unicode 10.0.0 data and algorithms
unic = "0.6.0" # This has Unicode 10.0.0 data and algorithms
```

And in `main.rs`:
Expand Down
5 changes: 5 additions & 0 deletions etc/common.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,16 @@ set -e

# List of components, in order of dependency
export COMPONENTS="
unic/char/range
unic/utils
unic/char/property
unic/char
unic/ucd/core
unic/ucd/age
unic/ucd/bidi
unic/ucd/case
unic/ucd/category
unic/ucd/name
unic/ucd/normal
unic/ucd
unic/bidi
Expand Down
2 changes: 1 addition & 1 deletion gen/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ publish = false
travis-ci = { repository = "behnam/rust-unic", branch = "master" }

[dependencies]
unic-char-range = { path = "../unic/char/range/", version = "0.5.0" }
unic-char-range = { path = "../unic/char/range/", version = "0.6.0" }

# Command line argument parsing
clap = "2.25"
Expand Down
14 changes: 7 additions & 7 deletions unic/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "unic"
version = "0.5.0"
version = "0.6.0"
authors = ["The UNIC Project Developers"]
repository = "https://github.com/behnam/rust-unic/"
license = "MIT/Apache-2.0"
Expand All @@ -19,12 +19,12 @@ bench_it = ["unic-bidi/bench_it"]
serde = ["unic-bidi/serde"]

[dependencies]
unic-bidi = { path = "bidi/", version = "0.5.0" }
unic-char = { path = "char/", version = "0.5.0" }
unic-idna = { path = "idna/", version = "0.5.0" }
unic-normal = { path = "normal/", version = "0.5.0" }
unic-ucd = { path = "ucd/", version = "0.5.0" }
unic-utils = { path = "utils/", version = "0.5.0" }
unic-bidi = { path = "bidi/", version = "0.6.0" }
unic-char = { path = "char/", version = "0.6.0" }
unic-idna = { path = "idna/", version = "0.6.0" }
unic-normal = { path = "normal/", version = "0.6.0" }
unic-ucd = { path = "ucd/", version = "0.6.0" }
unic-utils = { path = "utils/", version = "0.6.0" }

[badges]
appveyor = { repository = "behnam/rust-unic", branch = "master", service = "github" }
Expand Down
8 changes: 4 additions & 4 deletions unic/bidi/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "unic-bidi"
version = "0.5.0"
version = "0.6.0"
authors = ["The UNIC Project Developers"]
repository = "https://github.com/behnam/rust-unic/"
license = "MIT/Apache-2.0"
Expand All @@ -25,9 +25,9 @@ bench_it = []
[dependencies]
matches = "0.1"
serde = { version = ">=0.8, <2.0", optional = true, features = ["derive"] }
unic-ucd-bidi = { path = "../ucd/bidi/", version = "0.5.0" }
unic-ucd-bidi = { path = "../ucd/bidi/", version = "0.6.0" }

[dev-dependencies]
serde_test = ">=0.8, <2.0"
unic-char-property = { path = "../char/property/", version = "0.5.0" }
unic-ucd-core = { path = "../ucd/core/", version = "0.5.0" }
unic-char-property = { path = "../char/property/", version = "0.6.0" }
unic-ucd-core = { path = "../ucd/core/", version = "0.6.0" }
6 changes: 3 additions & 3 deletions unic/char/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "unic-char"
version = "0.5.0"
version = "0.6.0"
authors = ["The UNIC Project Developers"]
repository = "https://github.com/behnam/rust-unic/"
license = "MIT/Apache-2.0"
Expand All @@ -15,5 +15,5 @@ exclude = []
travis-ci = { repository = "behnam/rust-unic", branch = "master" }

[dependencies]
unic-char-property = { path = "property/", version = "0.5.0" }
unic-char-range = { path = "range/", version = "0.5.0" }
unic-char-property = { path = "property/", version = "0.6.0" }
unic-char-range = { path = "range/", version = "0.6.0" }
6 changes: 3 additions & 3 deletions unic/char/property/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "unic-char-property"
version = "0.5.0"
version = "0.6.0"
authors = ["The UNIC Project Developers"]
repository = "https://github.com/behnam/rust-unic/"
license = "MIT/Apache-2.0"
Expand All @@ -12,10 +12,10 @@ categories = ["internationalization", "text-processing", "parsing"]
exclude = []

[dependencies]
unic-utils = { path = "../../utils/", version = "0.5.0" }
unic-utils = { path = "../../utils/", version = "0.6.0" }

[dev-dependencies]
unic-char-range = { path = "../range/", version = "0.5.0" }
unic-char-range = { path = "../range/", version = "0.6.0" }

[badges]
travis-ci = { repository = "behnam/rust-unic", branch = "master" }
2 changes: 1 addition & 1 deletion unic/char/range/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "unic-char-range"
version = "0.5.0"
version = "0.6.0"
authors = ["The UNIC Project Developers"]
repository = "https://github.com/behnam/rust-unic/"
license = "MIT/Apache-2.0"
Expand Down
14 changes: 7 additions & 7 deletions unic/idna/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "unic-idna"
version = "0.5.0"
version = "0.6.0"
authors = ["The UNIC Project Developers"]
repository = "https://github.com/behnam/rust-unic/"
license = "MIT/Apache-2.0"
Expand All @@ -17,9 +17,9 @@ travis-ci = { repository = "behnam/rust-unic", branch = "master" }

[dependencies]
matches = "0.1"
unic-idna-punycode = { path = "punycode/", version = "0.5.0" }
unic-idna-mapping = { path = "mapping/", version = "0.5.0" }
unic-normal = { path = "../normal/", version = "0.5.0" }
unic-ucd-bidi = { path = "../ucd/bidi/", version = "0.5.0" }
unic-ucd-core = { path = "../ucd/core/", version = "0.5.0" }
unic-ucd-normal = { path = "../ucd/normal/", version = "0.5.0" }
unic-idna-punycode = { path = "punycode/", version = "0.6.0" }
unic-idna-mapping = { path = "mapping/", version = "0.6.0" }
unic-normal = { path = "../normal/", version = "0.6.0" }
unic-ucd-bidi = { path = "../ucd/bidi/", version = "0.6.0" }
unic-ucd-core = { path = "../ucd/core/", version = "0.6.0" }
unic-ucd-normal = { path = "../ucd/normal/", version = "0.6.0" }
8 changes: 4 additions & 4 deletions unic/idna/mapping/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "unic-idna-mapping"
version = "0.5.0"
version = "0.6.0"
authors = ["The UNIC Project Developers"]
repository = "https://github.com/behnam/rust-unic/"
license = "MIT/Apache-2.0"
Expand All @@ -15,6 +15,6 @@ exclude = []
travis-ci = { repository = "behnam/rust-unic", branch = "master" }

[dependencies]
unic-char-range = { path = "../../char/range/", version = "0.5.0" }
unic-ucd-core = { path = "../../ucd/core/", version = "0.5.0" }
unic-utils = { path = "../../utils/", version = "0.5.0" }
unic-char-range = { path = "../../char/range/", version = "0.6.0" }
unic-ucd-core = { path = "../../ucd/core/", version = "0.6.0" }
unic-utils = { path = "../../utils/", version = "0.6.0" }
2 changes: 1 addition & 1 deletion unic/idna/punycode/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "unic-idna-punycode"
version = "0.5.0"
version = "0.6.0"
authors = ["The UNIC Project Developers"]
repository = "https://github.com/behnam/rust-unic/"
license = "MIT/Apache-2.0"
Expand Down
6 changes: 3 additions & 3 deletions unic/normal/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "unic-normal"
version = "0.5.0"
version = "0.6.0"
authors = ["The UNIC Project Developers"]
repository = "https://github.com/behnam/rust-unic/"
license = "MIT/Apache-2.0"
Expand All @@ -16,7 +16,7 @@ exclude = ["tests/conformance_tests.rs"]
travis-ci = { repository = "behnam/rust-unic", branch = "master" }

[dependencies]
unic-ucd-normal = { path = "../ucd/normal/", version = "0.5.0" }
unic-ucd-normal = { path = "../ucd/normal/", version = "0.6.0" }

[dev-dependencies]
unic-ucd-core = { path = "../ucd/core/", version = "0.5.0" }
unic-ucd-core = { path = "../ucd/core/", version = "0.6.0" }
20 changes: 10 additions & 10 deletions unic/ucd/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "unic-ucd"
version = "0.5.0"
version = "0.6.0"
authors = ["The UNIC Project Developers"]
repository = "https://github.com/behnam/rust-unic/"
license = "MIT/Apache-2.0"
Expand All @@ -16,15 +16,15 @@ exclude = []
travis-ci = { repository = "behnam/rust-unic", branch = "master" }

[dependencies]
unic-ucd-age = { path = "age/", version = "0.5.0" }
unic-ucd-bidi = { path = "bidi/", version = "0.5.0" }
unic-ucd-case = { path = "case/", version = "0.5.0" }
unic-ucd-category = { path = "category/", version = "0.5.0" }
unic-ucd-core = { path = "core/", version = "0.5.0" }
unic-ucd-name = { path = "name/", version = "0.5.0" }
unic-ucd-normal = { path = "normal/", version = "0.5.0", features = ["unic-ucd-category"] }
unic-ucd-age = { path = "age/", version = "0.6.0" }
unic-ucd-bidi = { path = "bidi/", version = "0.6.0" }
unic-ucd-case = { path = "case/", version = "0.6.0" }
unic-ucd-category = { path = "category/", version = "0.6.0" }
unic-ucd-core = { path = "core/", version = "0.6.0" }
unic-ucd-name = { path = "name/", version = "0.6.0" }
unic-ucd-normal = { path = "normal/", version = "0.6.0", features = ["unic-ucd-category"] }

[dev-dependencies]
unic-utils = { path = "../utils/", version = "0.5.0" }
unic-char-range = { path = "../char/range/", version = "0.5.0" }
unic-utils = { path = "../utils/", version = "0.6.0" }
unic-char-range = { path = "../char/range/", version = "0.6.0" }
matches = "0.1"
10 changes: 5 additions & 5 deletions unic/ucd/age/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "unic-ucd-age"
version = "0.5.0"
version = "0.6.0"
authors = ["The UNIC Project Developers"]
repository = "https://github.com/behnam/rust-unic/"
license = "MIT/Apache-2.0"
Expand All @@ -15,7 +15,7 @@ exclude = []
travis-ci = { repository = "behnam/rust-unic", branch = "master" }

[dependencies]
unic-char-property = { path = "../../char/property/", version = "0.5.0" }
unic-char-range = { path = "../../char/range", version = "0.5.0" }
unic-ucd-core = { path = "../core/", version = "0.5.0" }
unic-utils = { path = "../../utils/", version = "0.5.0" }
unic-char-property = { path = "../../char/property/", version = "0.6.0" }
unic-char-range = { path = "../../char/range", version = "0.6.0" }
unic-ucd-core = { path = "../core/", version = "0.6.0" }
unic-utils = { path = "../../utils/", version = "0.6.0" }
10 changes: 5 additions & 5 deletions unic/ucd/bidi/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "unic-ucd-bidi"
version = "0.5.0"
version = "0.6.0"
authors = ["The UNIC Project Developers"]
repository = "https://github.com/behnam/rust-unic/"
license = "MIT/Apache-2.0"
Expand All @@ -15,7 +15,7 @@ exclude = []
travis-ci = { repository = "behnam/rust-unic", branch = "master" }

[dependencies]
unic-char-property = { path = "../../char/property/", version = "0.5.0" }
unic-char-range = { path = "../../char/range", version = "0.5.0" }
unic-ucd-core = { path = "../core/", version = "0.5.0" }
unic-utils = { path = "../../utils/", version = "0.5.0" }
unic-char-property = { path = "../../char/property/", version = "0.6.0" }
unic-char-range = { path = "../../char/range", version = "0.6.0" }
unic-ucd-core = { path = "../core/", version = "0.6.0" }
unic-utils = { path = "../../utils/", version = "0.6.0" }
8 changes: 4 additions & 4 deletions unic/ucd/case/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "unic-ucd-case"
version = "0.5.0"
version = "0.6.0"
authors = ["The UNIC Project Developers"]
repository = "https://github.com/behnam/rust-unic/"
license = "MIT/Apache-2.0"
Expand All @@ -15,6 +15,6 @@ exclude = []
travis-ci = { repository = "behnam/rust-unic", branch = "master" }

[dependencies]
unic-char-property = { path = "../../char/property/", version = "0.5.0" }
unic-char-range = { path = "../../char/range", version = "0.5.0" }
unic-ucd-core = { path = "../core/", version = "0.5.0" }
unic-char-property = { path = "../../char/property/", version = "0.6.0" }
unic-char-range = { path = "../../char/range", version = "0.6.0" }
unic-ucd-core = { path = "../core/", version = "0.6.0" }
10 changes: 5 additions & 5 deletions unic/ucd/category/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "unic-ucd-category"
version = "0.5.0"
version = "0.6.0"
authors = ["The UNIC Project Developers"]
repository = "https://github.com/behnam/rust-unic/"
license = "MIT/Apache-2.0"
Expand All @@ -16,7 +16,7 @@ travis-ci = { repository = "behnam/rust-unic", branch = "master" }

[dependencies]
matches = "0.1"
unic-char-property = { path = "../../char/property/", version = "0.5.0" }
unic-char-range = { path = "../../char/range", version = "0.5.0" }
unic-ucd-core = { path = "../core/", version = "0.5.0" }
unic-utils = { path = "../../utils/", version = "0.5.0" }
unic-char-property = { path = "../../char/property/", version = "0.6.0" }
unic-char-range = { path = "../../char/range", version = "0.6.0" }
unic-ucd-core = { path = "../core/", version = "0.6.0" }
unic-utils = { path = "../../utils/", version = "0.6.0" }
2 changes: 1 addition & 1 deletion unic/ucd/core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "unic-ucd-core"
version = "0.5.0"
version = "0.6.0"
authors = ["The UNIC Project Developers"]
repository = "https://github.com/behnam/rust-unic/"
license = "MIT/Apache-2.0"
Expand Down
6 changes: 3 additions & 3 deletions unic/ucd/name/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "unic-ucd-name"
version = "0.5.0"
version = "0.6.0"
authors = ["The UNIC Project Developers"]
repository = "https://github.com/behnam/rust-unic/"
license = "MIT/Apache-2.0"
Expand All @@ -15,5 +15,5 @@ exclude = []
travis-ci = { repository = "behnam/rust-unic", branch = "master" }

[dependencies]
unic-ucd-core = { path = "../core/", version = "0.5.0" }
unic-utils = { path = "../../utils", version = "0.5.0" }
unic-ucd-core = { path = "../core/", version = "0.6.0" }
unic-utils = { path = "../../utils", version = "0.6.0" }
14 changes: 7 additions & 7 deletions unic/ucd/normal/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "unic-ucd-normal"
version = "0.5.0"
version = "0.6.0"
authors = ["The UNIC Project Developers"]
repository = "https://github.com/behnam/rust-unic/"
license = "MIT/Apache-2.0"
Expand All @@ -15,14 +15,14 @@ exclude = ["tests/conformance_tests.rs"]
travis-ci = { repository = "behnam/rust-unic", branch = "master" }

[dependencies]
unic-char-property = { path = "../../char/property/", version = "0.5.0" }
unic-char-range = { path = "../../char/range", version = "0.5.0" }
unic-ucd-category = { path = "../category/", version = "0.5.0", optional = true }
unic-ucd-core = { path = "../core/", version = "0.5.0" }
unic-utils = { path = "../../utils/", version = "0.5.0" }
unic-char-property = { path = "../../char/property/", version = "0.6.0" }
unic-char-range = { path = "../../char/range", version = "0.6.0" }
unic-ucd-category = { path = "../category/", version = "0.6.0", optional = true }
unic-ucd-core = { path = "../core/", version = "0.6.0" }
unic-utils = { path = "../../utils/", version = "0.6.0" }

[dev-dependencies]
unic-ucd-category = { path = "../category/", version = "0.5.0" }
unic-ucd-category = { path = "../category/", version = "0.6.0" }

[features]
default = []
4 changes: 2 additions & 2 deletions unic/utils/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "unic-utils"
version = "0.5.0"
version = "0.6.0"
authors = ["The UNIC Project Developers"]
repository = "https://github.com/behnam/rust-unic/"
license = "MIT/Apache-2.0"
Expand All @@ -12,7 +12,7 @@ categories = ["internationalization", "text-processing", "parsing", "rendering"]
exclude = []

[dependencies]
unic-char-range = { path = "../char/range/", version = "0.5.0" }
unic-char-range = { path = "../char/range/", version = "0.6.0" }

[badges]
travis-ci = { repository = "behnam/rust-unic", branch = "master" }

0 comments on commit 224f71d

Please sign in to comment.