Skip to content

Commit

Permalink
Merge pull request #15 from behnam/dev
Browse files Browse the repository at this point in the history
Bump version to 0.4.0 globally
  • Loading branch information
behnam authored Jun 23, 2017
2 parents 6939941 + 06b775e commit 42ecd56
Show file tree
Hide file tree
Showing 13 changed files with 36 additions and 35 deletions.
1 change: 1 addition & 0 deletions .cargo/publish-all.sh
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ COMPONENTS="
ucd
bidi
normal
idna/mapping
idna/punycode
idna
"
Expand Down
10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "unic"
version = "0.3.0"
version = "0.4.0"
authors = ["The UNIC Project Developers"]
homepage = "https://github.com/behnam/rust-unic/"
repository = "https://github.com/behnam/rust-unic/"
Expand All @@ -16,10 +16,10 @@ travis-ci = { repository = "behnam/rust-unic", branch = "master" }
[workspace]

[dependencies]
unic-ucd = { path = "components/ucd/", version = "0.3.0" }
unic-bidi = { path = "components/bidi/", version = "0.2.0" }
unic-idna = { path = "components/idna/", version = "0.2.0" }
unic-normal = { path = "components/normal/", version = "0.2.0" }
unic-ucd = { path = "components/ucd/", version = "0.4.0" }
unic-bidi = { path = "components/bidi/", version = "0.4.0" }
unic-idna = { path = "components/idna/", version = "0.4.0" }
unic-normal = { path = "components/normal/", version = "0.4.0" }

[features]
default = []
Expand Down
6 changes: 3 additions & 3 deletions components/bidi/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "unic-bidi"
version = "0.2.0"
version = "0.4.0"
authors = ["The UNIC Project Developers"]
homepage = "https://github.com/behnam/rust-unic/"
repository = "https://github.com/behnam/rust-unic/"
Expand All @@ -21,8 +21,8 @@ with_serde = ["serde", "serde_derive"]
matches = "0.1"
serde = {version = ">=0.8, <2.0", optional = true}
serde_derive = {version = ">=0.8, <2.0", optional = true}
unic-ucd-bidi = { path = "../ucd/bidi/", version = "0.2.0" }
unic-ucd-core = { path = "../ucd/core/", version = "0.2.0" }
unic-ucd-bidi = { path = "../ucd/bidi/", version = "0.4.0" }
unic-ucd-core = { path = "../ucd/core/", version = "0.4.0" }

[dev-dependencies]
serde_test = ">=0.8, <2.0"
14 changes: 7 additions & 7 deletions components/idna/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "unic-idna"
version = "0.2.0"
version = "0.4.0"
authors = ["The UNIC Project Developers"]
homepage = "https://github.com/behnam/rust-unic/"
repository = "https://github.com/behnam/rust-unic/"
Expand All @@ -22,9 +22,9 @@ rustc-serialize = "0.3"

[dependencies]
matches = "0.1"
unic-idna-punycode = { path = "punycode/", version = "0.2.0" }
unic-idna-mapping = { path = "mapping/", version = "0.2.0" }
unic-normal = { path = "../normal/", version = "0.2.0" }
unic-ucd-bidi = { path = "../ucd/bidi/", version = "0.2.0" }
unic-ucd-core = { path = "../ucd/core/", version = "0.2.0" }
unic-ucd-normal = { path = "../ucd/normal/", version = "0.2.0" }
unic-idna-punycode = { path = "punycode/", version = "0.4.0" }
unic-idna-mapping = { path = "mapping/", version = "0.4.0" }
unic-normal = { path = "../normal/", version = "0.4.0" }
unic-ucd-bidi = { path = "../ucd/bidi/", version = "0.4.0" }
unic-ucd-core = { path = "../ucd/core/", version = "0.4.0" }
unic-ucd-normal = { path = "../ucd/normal/", version = "0.4.0" }
4 changes: 2 additions & 2 deletions components/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.2.0"
version = "0.4.0"
authors = ["The UNIC Project Developers"]
homepage = "https://github.com/behnam/rust-unic/"
repository = "https://github.com/behnam/rust-unic/"
Expand All @@ -16,4 +16,4 @@ rustc-test = "0.1"
rustc-serialize = "0.3"

[dependencies]
unic-ucd-core = { path = "../../ucd/core/", version = "0.2.0" }
unic-ucd-core = { path = "../../ucd/core/", version = "0.4.0" }
2 changes: 1 addition & 1 deletion components/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.2.0"
version = "0.4.0"
authors = ["The UNIC Project Developers"]
homepage = "https://github.com/behnam/rust-unic/"
repository = "https://github.com/behnam/rust-unic/"
Expand Down
6 changes: 3 additions & 3 deletions components/normal/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "unic-normal"
version = "0.2.0"
version = "0.4.0"
authors = ["The UNIC Project Developers"]
homepage = "https://github.com/behnam/rust-unic/"
repository = "https://github.com/behnam/rust-unic/"
Expand All @@ -14,5 +14,5 @@ readme = "README.md"
travis-ci = { repository = "behnam/rust-unic", branch = "master" }

[dependencies]
unic-ucd-core = { path = "../ucd/core/", version = "0.2.0" }
unic-ucd-normal = { path = "../ucd/normal/", version = "0.2.0" }
unic-ucd-core = { path = "../ucd/core/", version = "0.4.0" }
unic-ucd-normal = { path = "../ucd/normal/", version = "0.4.0" }
12 changes: 6 additions & 6 deletions components/ucd/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "unic-ucd"
version = "0.3.0"
version = "0.4.0"
authors = ["The UNIC Project Developers"]
homepage = "https://github.com/behnam/rust-unic/"
repository = "https://github.com/behnam/rust-unic/"
Expand All @@ -13,8 +13,8 @@ readme = "README.md"
travis-ci = { repository = "behnam/rust-unic", branch = "master" }

[dependencies]
unic-ucd-age = { path = "age/", version = "0.3.0" }
unic-ucd-bidi = { path = "bidi/", version = "0.2.0" }
unic-ucd-core = { path = "core/", version = "0.2.0" }
unic-ucd-normal = { path = "normal/", version = "0.2.0" }
unic-ucd-utils = { path = "utils/", version = "0.2.0" }
unic-ucd-age = { path = "age/", version = "0.4.0" }
unic-ucd-bidi = { path = "bidi/", version = "0.4.0" }
unic-ucd-core = { path = "core/", version = "0.4.0" }
unic-ucd-normal = { path = "normal/", version = "0.4.0" }
unic-ucd-utils = { path = "utils/", version = "0.4.0" }
4 changes: 2 additions & 2 deletions components/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.3.0"
version = "0.4.0"
authors = ["The UNIC Project Developers"]
homepage = "https://github.com/behnam/rust-unic/"
repository = "https://github.com/behnam/rust-unic/"
Expand All @@ -12,4 +12,4 @@ description = "UNIC - Unicode Character Database - Age"
travis-ci = { repository = "behnam/rust-unic", branch = "master" }

[dependencies]
unic-ucd-core = { path = "../core/", version = "0.2.0" }
unic-ucd-core = { path = "../core/", version = "0.4.0" }
4 changes: 2 additions & 2 deletions components/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.2.0"
version = "0.4.0"
authors = ["The UNIC Project Developers"]
homepage = "https://github.com/behnam/rust-unic/"
repository = "https://github.com/behnam/rust-unic/"
Expand All @@ -12,4 +12,4 @@ description = "UNIC - Unicode Character Database - Bidi Properties"
travis-ci = { repository = "behnam/rust-unic", branch = "master" }

[dependencies]
unic-ucd-core = { path = "../core/", version = "0.2.0" }
unic-ucd-core = { path = "../core/", version = "0.4.0" }
2 changes: 1 addition & 1 deletion components/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.2.0"
version = "0.4.0"
authors = ["The UNIC Project Developers"]
homepage = "https://github.com/behnam/rust-unic/"
repository = "https://github.com/behnam/rust-unic/"
Expand Down
4 changes: 2 additions & 2 deletions components/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.2.0"
version = "0.4.0"
authors = ["The UNIC Project Developers"]
homepage = "https://github.com/behnam/rust-unic/"
repository = "https://github.com/behnam/rust-unic/"
Expand All @@ -12,4 +12,4 @@ description = "UNIC - Unicode Character Database - Normalization Properties"
travis-ci = { repository = "behnam/rust-unic", branch = "master" }

[dependencies]
unic-ucd-core = { path = "../core/", version = "0.2.0" }
unic-ucd-core = { path = "../core/", version = "0.4.0" }
2 changes: 1 addition & 1 deletion components/ucd/utils/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "unic-ucd-utils"
version = "0.2.0"
version = "0.4.0"
authors = ["The UNIC Project Developers"]
homepage = "https://github.com/behnam/rust-unic/"
repository = "https://github.com/behnam/rust-unic/"
Expand Down

0 comments on commit 42ecd56

Please sign in to comment.