Skip to content

Commit

Permalink
Prepare for an update to 1.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
filmil committed Oct 13, 2021
1 parent 3b3f8fe commit ac6bc0c
Show file tree
Hide file tree
Showing 24 changed files with 122 additions and 122 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -149,8 +149,8 @@ publish:
# A helper to up-rev the cargo crate versions.
# NOTE: The cargo crate version number is completely independent of the Docker
# build environment version number.
UPREV_OLD_VERSION ?= 1.0.1
UPREV_NEW_VERSION ?= 1.0.2
UPREV_OLD_VERSION ?= 1.0.3
UPREV_NEW_VERSION ?= 1.0.4
define uprevfn
( \
cd $(1) && \
Expand Down
2 changes: 1 addition & 1 deletion ecma402_traits/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ license = "Apache-2.0"
name = "ecma402_traits"
readme = "README.md"
repository = "https://github.com/google/rust_icu"
version = "1.0.1"
version = "1.0.3"

description = """
Rust implementation of type traits to support ECMA 402 specification in Rust.
Expand Down
32 changes: 16 additions & 16 deletions rust_icu/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ license = "Apache-2.0"
name = "rust_icu"
readme = "README.md"
repository = "https://github.com/google/rust_icu"
version = "1.0.1"
version = "1.0.3"

description = """
Native bindings to the ICU4C library from Unicode.
Expand All @@ -17,21 +17,21 @@ keywords = ["icu", "unicode", "i18n", "l10n"]
anyhow = "1.0.25"
log = "0.4.6"
paste = "1.0"
rust_icu_common = { path = "../rust_icu_common", version = "1.0.1", default-features = false }
rust_icu_sys = { path = "../rust_icu_sys", version = "1.0.1", default-features = false }
rust_icu_ubrk = { path = "../rust_icu_ubrk", version = "1.0.1", default-features = false }
rust_icu_ucal = { path = "../rust_icu_ucal", version = "1.0.1", default-features = false }
rust_icu_ucol = { path = "../rust_icu_ucol", version = "1.0.1", default-features = false }
rust_icu_udat = { path = "../rust_icu_udat", version = "1.0.1", default-features = false }
rust_icu_udata = { path = "../rust_icu_udata", version = "1.0.1", default-features = false }
rust_icu_uenum = { path = "../rust_icu_uenum", version = "1.0.1", default-features = false }
rust_icu_ulistformatter = { path = "../rust_icu_ulistformatter", version = "1.0.1", default-features = false }
rust_icu_uloc = { path = "../rust_icu_uloc", version = "1.0.1", default-features = false }
rust_icu_umsg = { path = "../rust_icu_umsg", version = "1.0.1", default-features = false }
rust_icu_unorm2 = { path = "../rust_icu_unorm2", version = "1.0.1", default-features = false }
rust_icu_ustring = { path = "../rust_icu_ustring", version = "1.0.1", default-features = false }
rust_icu_utext = { path = "../rust_icu_utext", version = "1.0.1", default-features = false }
rust_icu_utrans = { path = "../rust_icu_utrans", version = "1.0.1", default-features = false }
rust_icu_common = { path = "../rust_icu_common", version = "1.0.3", default-features = false }
rust_icu_sys = { path = "../rust_icu_sys", version = "1.0.3", default-features = false }
rust_icu_ubrk = { path = "../rust_icu_ubrk", version = "1.0.3", default-features = false }
rust_icu_ucal = { path = "../rust_icu_ucal", version = "1.0.3", default-features = false }
rust_icu_ucol = { path = "../rust_icu_ucol", version = "1.0.3", default-features = false }
rust_icu_udat = { path = "../rust_icu_udat", version = "1.0.3", default-features = false }
rust_icu_udata = { path = "../rust_icu_udata", version = "1.0.3", default-features = false }
rust_icu_uenum = { path = "../rust_icu_uenum", version = "1.0.3", default-features = false }
rust_icu_ulistformatter = { path = "../rust_icu_ulistformatter", version = "1.0.3", default-features = false }
rust_icu_uloc = { path = "../rust_icu_uloc", version = "1.0.3", default-features = false }
rust_icu_umsg = { path = "../rust_icu_umsg", version = "1.0.3", default-features = false }
rust_icu_unorm2 = { path = "../rust_icu_unorm2", version = "1.0.3", default-features = false }
rust_icu_ustring = { path = "../rust_icu_ustring", version = "1.0.3", default-features = false }
rust_icu_utext = { path = "../rust_icu_utext", version = "1.0.3", default-features = false }
rust_icu_utrans = { path = "../rust_icu_utrans", version = "1.0.3", default-features = false }
thiserror = "1.0.9"

# See the feature description in ../rust_icu_sys/Cargo.toml for details.
Expand Down
4 changes: 2 additions & 2 deletions rust_icu_common/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
edition = "2018"
name = "rust_icu_common"
version = "1.0.1"
version = "1.0.3"
authors = ["Google Inc."]
license = "Apache-2.0"
readme = "README.md"
Expand All @@ -19,7 +19,7 @@ keywords = ["icu", "unicode", "i18n", "l10n"]
anyhow = "1.0.25"
thiserror = "1.0.9"

rust_icu_sys = { path = "../rust_icu_sys", version = "1.0.1", default-features = false}
rust_icu_sys = { path = "../rust_icu_sys", version = "1.0.3", default-features = false}

# See the feature description in ../rust_icu_sys/Cargo.toml for details.
[features]
Expand Down
22 changes: 11 additions & 11 deletions rust_icu_ecma402/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,25 +6,25 @@ license = "Apache-2.0"
name = "rust_icu_ecma402"
readme = "README.md"
repository = "https://github.com/google/rust_icu"
version = "1.0.1"
version = "1.0.3"

description = """
ECMA 402 standard implementation in Rust.
"""
[dependencies]
anyhow = "1.0.25"
ecma402_traits = { path = "../ecma402_traits", version = "1.0.1" }
ecma402_traits = { path = "../ecma402_traits", version = "1.0.3" }
log = "0.4.6"
paste = "1.0"
rust_icu_common = { path = "../rust_icu_common", version = "1.0.1", default-features = false }
rust_icu_udat = { path = "../rust_icu_udat", version = "1.0.1", default-features = false }
rust_icu_sys = { path = "../rust_icu_sys", version = "1.0.1", default-features = false }
rust_icu_uloc = { path = "../rust_icu_uloc", version = "1.0.1", default-features = false }
rust_icu_ustring = { path = "../rust_icu_ustring", version = "1.0.1", default-features = false }
rust_icu_ulistformatter = { path = "../rust_icu_ulistformatter", version = "1.0.1", default-features = false }
rust_icu_upluralrules = { path = "../rust_icu_upluralrules", version = "1.0.1", default-features = false }
rust_icu_unum = { path = "../rust_icu_unum", version = "1.0.1", default-features = false }
rust_icu_unumberformatter = { path = "../rust_icu_unumberformatter", version = "1.0.1", default-features = false }
rust_icu_common = { path = "../rust_icu_common", version = "1.0.3", default-features = false }
rust_icu_udat = { path = "../rust_icu_udat", version = "1.0.3", default-features = false }
rust_icu_sys = { path = "../rust_icu_sys", version = "1.0.3", default-features = false }
rust_icu_uloc = { path = "../rust_icu_uloc", version = "1.0.3", default-features = false }
rust_icu_ustring = { path = "../rust_icu_ustring", version = "1.0.3", default-features = false }
rust_icu_ulistformatter = { path = "../rust_icu_ulistformatter", version = "1.0.3", default-features = false }
rust_icu_upluralrules = { path = "../rust_icu_upluralrules", version = "1.0.3", default-features = false }
rust_icu_unum = { path = "../rust_icu_unum", version = "1.0.3", default-features = false }
rust_icu_unumberformatter = { path = "../rust_icu_unumberformatter", version = "1.0.3", default-features = false }

[dev-dependencies]
anyhow = "1.0.25"
Expand Down
12 changes: 6 additions & 6 deletions rust_icu_intl/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ license = "Apache-2.0"
name = "rust_icu_intl"
readme = "README.md"
repository = "https://github.com/google/rust_icu"
version = "1.0.1"
version = "1.0.3"

description = """
Native bindings to the ICU4C library from Unicode.
Expand All @@ -17,11 +17,11 @@ umsg.h
anyhow = "1.0.25"
log = "0.4.6"
paste = "1.0"
rust_icu_common = { path = "../rust_icu_common", version = "1.0.1", default-features = false }
rust_icu_sys = { path = "../rust_icu_sys", version = "1.0.1", default-features = false }
rust_icu_uloc = { path = "../rust_icu_uloc", version = "1.0.1", default-features = false }
rust_icu_umsg = { path = "../rust_icu_umsg", version = "1.0.1", default-features = false }
rust_icu_ustring = { path = "../rust_icu_ustring", version = "1.0.1", default-features = false }
rust_icu_common = { path = "../rust_icu_common", version = "1.0.3", default-features = false }
rust_icu_sys = { path = "../rust_icu_sys", version = "1.0.3", default-features = false }
rust_icu_uloc = { path = "../rust_icu_uloc", version = "1.0.3", default-features = false }
rust_icu_umsg = { path = "../rust_icu_umsg", version = "1.0.3", default-features = false }
rust_icu_ustring = { path = "../rust_icu_ustring", version = "1.0.3", default-features = false }
thiserror = "1.0.9"

# See the feature description in ../rust_icu_sys/Cargo.toml for details.
Expand Down
2 changes: 1 addition & 1 deletion rust_icu_sys/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rust_icu_sys"
version = "1.0.1"
version = "1.0.3"
authors = ["Google Inc."]
license = "Apache-2.0"
readme = "README.md"
Expand Down
10 changes: 5 additions & 5 deletions rust_icu_ubrk/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ license = "Apache-2.0"
name = "rust_icu_ubrk"
readme = "README.md"
repository = "https://github.com/google/rust_icu"
version = "1.0.1"
version = "1.0.3"

description = """
Native bindings to the ICU4C library from Unicode.
Expand All @@ -17,10 +17,10 @@ Native bindings to the ICU4C library from Unicode.
[dependencies]
log = "0.4.6"
paste = "1.0"
rust_icu_common = { path = "../rust_icu_common", version = "1.0.1", default-features = false }
rust_icu_sys = { path = "../rust_icu_sys", version = "1.0.1", default-features = false }
rust_icu_uloc = { path = "../rust_icu_uloc", version = "1.0.1", default-features = false }
rust_icu_ustring = { path = "../rust_icu_ustring", version = "1.0.1", default-features = false }
rust_icu_common = { path = "../rust_icu_common", version = "1.0.3", default-features = false }
rust_icu_sys = { path = "../rust_icu_sys", version = "1.0.3", default-features = false }
rust_icu_uloc = { path = "../rust_icu_uloc", version = "1.0.3", default-features = false }
rust_icu_ustring = { path = "../rust_icu_ustring", version = "1.0.3", default-features = false }

[dev-dependencies]
anyhow = "1.0.25"
Expand Down
10 changes: 5 additions & 5 deletions rust_icu_ucal/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ license = "Apache-2.0"
name = "rust_icu_ucal"
readme = "README.md"
repository = "https://github.com/google/rust_icu"
version = "1.0.1"
version = "1.0.3"

description = """
Native bindings to the ICU4C library from Unicode.
Expand All @@ -18,10 +18,10 @@ keywords = ["icu", "unicode", "i18n", "l10n"]
[dependencies]
log = "0.4.6"
paste = "1.0"
rust_icu_common = { path = "../rust_icu_common", version = "1.0.1", default-features = false }
rust_icu_sys = { path = "../rust_icu_sys", version = "1.0.1", default-features = false }
rust_icu_uenum = { path = "../rust_icu_uenum", version = "1.0.1", default-features = false }
rust_icu_ustring = { path = "../rust_icu_ustring", version = "1.0.1", default-features = false }
rust_icu_common = { path = "../rust_icu_common", version = "1.0.3", default-features = false }
rust_icu_sys = { path = "../rust_icu_sys", version = "1.0.3", default-features = false }
rust_icu_uenum = { path = "../rust_icu_uenum", version = "1.0.3", default-features = false }
rust_icu_ustring = { path = "../rust_icu_ustring", version = "1.0.3", default-features = false }

[dev-dependencies]
regex = "1"
Expand Down
10 changes: 5 additions & 5 deletions rust_icu_ucol/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ license = "Apache-2.0"
name = "rust_icu_ucol"
readme = "README.md"
repository = "https://github.com/google/rust_icu"
version = "1.0.1"
version = "1.0.3"
keywords = ["icu", "unicode", "i18n", "l10n"]

description = """
Expand All @@ -17,10 +17,10 @@ Native bindings to the ICU4C library from Unicode.
[dependencies]
log = "0.4.6"
paste = "1.0"
rust_icu_common = { path = "../rust_icu_common", version = "1.0.1", default-features = false }
rust_icu_sys = { path = "../rust_icu_sys", version = "1.0.1", default-features = false }
rust_icu_uenum = { path = "../rust_icu_uenum", version = "1.0.1", default-features = false }
rust_icu_ustring = { path = "../rust_icu_ustring", version = "1.0.1", default-features = false }
rust_icu_common = { path = "../rust_icu_common", version = "1.0.3", default-features = false }
rust_icu_sys = { path = "../rust_icu_sys", version = "1.0.3", default-features = false }
rust_icu_uenum = { path = "../rust_icu_uenum", version = "1.0.3", default-features = false }
rust_icu_ustring = { path = "../rust_icu_ustring", version = "1.0.3", default-features = false }
anyhow = "1.0.25"

[dev-dependencies]
Expand Down
14 changes: 7 additions & 7 deletions rust_icu_udat/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ license = "Apache-2.0"
name = "rust_icu_udat"
readme = "README.md"
repository = "https://github.com/google/rust_icu"
version = "1.0.1"
version = "1.0.3"

description = """
Native bindings to the ICU4C library from Unicode.
Expand All @@ -19,12 +19,12 @@ keywords = ["icu", "unicode", "i18n", "l10n"]
[dependencies]
log = "0.4.6"
paste = "1.0"
rust_icu_common = { path = "../rust_icu_common", version = "1.0.1", default-features = false }
rust_icu_sys = { path = "../rust_icu_sys", version = "1.0.1", default-features = false }
rust_icu_ucal = { path = "../rust_icu_ucal", version = "1.0.1", default-features = false }
rust_icu_uenum = { path = "../rust_icu_uenum", version = "1.0.1", default-features = false }
rust_icu_uloc = { path = "../rust_icu_uloc", version = "1.0.1", default-features = false }
rust_icu_ustring = { path = "../rust_icu_ustring", version = "1.0.1", default-features = false }
rust_icu_common = { path = "../rust_icu_common", version = "1.0.3", default-features = false }
rust_icu_sys = { path = "../rust_icu_sys", version = "1.0.3", default-features = false }
rust_icu_ucal = { path = "../rust_icu_ucal", version = "1.0.3", default-features = false }
rust_icu_uenum = { path = "../rust_icu_uenum", version = "1.0.3", default-features = false }
rust_icu_uloc = { path = "../rust_icu_uloc", version = "1.0.3", default-features = false }
rust_icu_ustring = { path = "../rust_icu_ustring", version = "1.0.3", default-features = false }

[dev-dependencies]
regex = "1"
Expand Down
6 changes: 3 additions & 3 deletions rust_icu_udata/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ license = "Apache-2.0"
name = "rust_icu_udata"
readme = "README.md"
repository = "https://github.com/google/rust_icu"
version = "1.0.1"
version = "1.0.3"

description = """
Native bindings to the ICU4C library from Unicode.
Expand All @@ -18,8 +18,8 @@ keywords = ["icu", "unicode", "i18n", "l10n"]
[dependencies]
log = "0.4.6"
paste = "1.0"
rust_icu_common = { path = "../rust_icu_common", version = "1.0.1", default-features = false }
rust_icu_sys = { path = "../rust_icu_sys", version = "1.0.1", default-features = false }
rust_icu_common = { path = "../rust_icu_common", version = "1.0.3", default-features = false }
rust_icu_sys = { path = "../rust_icu_sys", version = "1.0.3", default-features = false }

# See the feature description in ../rust_icu_sys/Cargo.toml for details.
[features]
Expand Down
6 changes: 3 additions & 3 deletions rust_icu_uenum/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ license = "Apache-2.0"
name = "rust_icu_uenum"
readme = "README.md"
repository = "https://github.com/google/rust_icu"
version = "1.0.1"
version = "1.0.3"

description = """
Native bindings to the ICU4C library from Unicode.
Expand All @@ -17,8 +17,8 @@ keywords = ["icu", "unicode", "i18n", "l10n"]

[dependencies]
paste = "1.0"
rust_icu_sys = { path = "../rust_icu_sys", version = "1.0.1", default-features = false }
rust_icu_common = { path = "../rust_icu_common", version = "1.0.1", default-features = false }
rust_icu_sys = { path = "../rust_icu_sys", version = "1.0.3", default-features = false }
rust_icu_common = { path = "../rust_icu_common", version = "1.0.3", default-features = false }

# See the feature description in ../rust_icu_sys/Cargo.toml for details.
[features]
Expand Down
8 changes: 4 additions & 4 deletions rust_icu_uformattable/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ license = "Apache-2.0"
name = "rust_icu_uformattable"
readme = "README.md"
repository = "https://github.com/google/rust_icu"
version = "1.0.1"
version = "1.0.3"
keywords = ["icu", "unicode", "i18n", "l10n"]

description = """
Expand All @@ -17,9 +17,9 @@ Native bindings to the ICU4C library from Unicode.
[dependencies]
log = "0.4.6"
paste = "1.0"
rust_icu_common = { path = "../rust_icu_common", version = "1.0.1", default-features = false }
rust_icu_sys = { path = "../rust_icu_sys", version = "1.0.1", default-features = false }
rust_icu_ustring = { path = "../rust_icu_ustring", version = "1.0.1", default-features = false }
rust_icu_common = { path = "../rust_icu_common", version = "1.0.3", default-features = false }
rust_icu_sys = { path = "../rust_icu_sys", version = "1.0.3", default-features = false }
rust_icu_ustring = { path = "../rust_icu_ustring", version = "1.0.3", default-features = false }
anyhow = "1.0.25"

[dev-dependencies]
Expand Down
8 changes: 4 additions & 4 deletions rust_icu_ulistformatter/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ license = "Apache-2.0"
name = "rust_icu_ulistformatter"
readme = "README.md"
repository = "https://github.com/google/rust_icu"
version = "1.0.1"
version = "1.0.3"
keywords = ["icu", "unicode", "i18n", "l10n"]

description = """
Expand All @@ -17,9 +17,9 @@ Native bindings to the ICU4C library from Unicode.
[dependencies]
log = "0.4.6"
paste = "1.0"
rust_icu_common = { path = "../rust_icu_common", version = "1.0.1", default-features = false }
rust_icu_sys = { path = "../rust_icu_sys", version = "1.0.1", default-features = false }
rust_icu_ustring = { path = "../rust_icu_ustring", version = "1.0.1", default-features = false }
rust_icu_common = { path = "../rust_icu_common", version = "1.0.3", default-features = false }
rust_icu_sys = { path = "../rust_icu_sys", version = "1.0.3", default-features = false }
rust_icu_ustring = { path = "../rust_icu_ustring", version = "1.0.3", default-features = false }
anyhow = "1.0.25"

[dev-dependencies]
Expand Down
10 changes: 5 additions & 5 deletions rust_icu_uloc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ name = "rust_icu_uloc"
build = "build.rs"
readme = "README.md"
repository = "https://github.com/google/rust_icu"
version = "1.0.1"
version = "1.0.3"
keywords = ["icu", "unicode", "i18n", "l10n"]

description = """
Expand All @@ -18,10 +18,10 @@ uloc.h
[dependencies]
log = "0.4.6"
paste = "1.0"
rust_icu_common = { path = "../rust_icu_common", version = "1.0.1", default-features = false }
rust_icu_sys = { path = "../rust_icu_sys", version = "1.0.1", default-features = false }
rust_icu_uenum = { path = "../rust_icu_uenum", version = "1.0.1", default-features = false }
rust_icu_ustring = { path = "../rust_icu_ustring", version = "1.0.1", default-features = false }
rust_icu_common = { path = "../rust_icu_common", version = "1.0.3", default-features = false }
rust_icu_sys = { path = "../rust_icu_sys", version = "1.0.3", default-features = false }
rust_icu_uenum = { path = "../rust_icu_uenum", version = "1.0.3", default-features = false }
rust_icu_ustring = { path = "../rust_icu_ustring", version = "1.0.3", default-features = false }

[dev-dependencies]
anyhow = "1.0.25"
Expand Down
12 changes: 6 additions & 6 deletions rust_icu_umsg/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ license = "Apache-2.0"
name = "rust_icu_umsg"
readme = "README.md"
repository = "https://github.com/google/rust_icu"
version = "1.0.1"
version = "1.0.3"

description = """
Native bindings to the ICU4C library from Unicode.
Expand All @@ -19,14 +19,14 @@ keywords = ["icu", "unicode", "i18n", "l10n"]
anyhow = "1.0.25"
log = "0.4.6"
paste = "1.0"
rust_icu_common = { path = "../rust_icu_common", version = "1.0.1", default-features = false }
rust_icu_sys = { path = "../rust_icu_sys", version = "1.0.1", default-features = false }
rust_icu_uloc = { path = "../rust_icu_uloc", version = "1.0.1", default-features = false }
rust_icu_ustring = { path = "../rust_icu_ustring", version = "1.0.1", default-features = false }
rust_icu_common = { path = "../rust_icu_common", version = "1.0.3", default-features = false }
rust_icu_sys = { path = "../rust_icu_sys", version = "1.0.3", default-features = false }
rust_icu_uloc = { path = "../rust_icu_uloc", version = "1.0.3", default-features = false }
rust_icu_ustring = { path = "../rust_icu_ustring", version = "1.0.3", default-features = false }
thiserror = "1.0.9"

[dev-dependencies]
rust_icu_ucal = { path = "../rust_icu_ucal", version = "1.0.1", default-features = false }
rust_icu_ucal = { path = "../rust_icu_ucal", version = "1.0.3", default-features = false }

# See the feature description in ../rust_icu_sys/Cargo.toml for details.
[features]
Expand Down
Loading

0 comments on commit ac6bc0c

Please sign in to comment.