Skip to content

Commit

Permalink
Bump all crate versions to 1.0 (#2662)
Browse files Browse the repository at this point in the history
(except for segmenter and casemapping, they are 0.7)
  • Loading branch information
Manishearth committed Sep 27, 2022
1 parent a17377f commit ed5f968
Show file tree
Hide file tree
Showing 36 changed files with 216 additions and 216 deletions.
52 changes: 26 additions & 26 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -30,8 +30,8 @@ An example `ICU4X` powered application in Rust may look like below...

```toml
[dependencies]
icu = { version = "1.0.0-beta1", features = ["serde"] }
icu_testdata = "1.0.0-beta1"
icu = { version = "1.0.0", features = ["serde"] }
icu_testdata = "1.0.0"
```

`src/main.rs`:
Expand Down
6 changes: 3 additions & 3 deletions components/calendar/Cargo.toml
Expand Up @@ -5,7 +5,7 @@
[package]
name = "icu_calendar"
description = "API for supporting various types of calendars"
version = "1.0.0-beta1"
version = "1.0.0"
authors = ["The ICU4X Project Developers"]
edition = "2018"
readme = "README.md"
Expand Down Expand Up @@ -40,8 +40,8 @@ denylist = ["bench"]
[dependencies]
displaydoc = { version = "0.2.3", default-features = false }
tinystr = { version = "0.7", path = "../../utils/tinystr", features = ["alloc", "zerovec"], default-features = false }
icu_provider = { version = "1.0.0-beta1", path = "../../provider/core", features = ["macros"] }
icu_locid = { version = "1.0.0-beta1", path = "../../components/locid" }
icu_provider = { version = "1.0.0", path = "../../provider/core", features = ["macros"] }
icu_locid = { version = "1.0.0", path = "../../components/locid" }
serde = { version = "1.0", default-features = false, features = ["derive", "alloc"], optional = true }
zerovec = { version = "0.9", path = "../../utils/zerovec", default-features = false, features = ["derive"] }
databake = { version = "0.1.0", path = "../../utils/databake", optional = true, features = ["derive"] }
Expand Down
12 changes: 6 additions & 6 deletions components/collator/Cargo.toml
Expand Up @@ -5,7 +5,7 @@
[package]
name = "icu_collator"
description = "API for comparing strings according to language-dependent conventions"
version = "1.0.0-beta1"
version = "1.0.0"
authors = ["The ICU4X Project Developers"]
edition = "2018"
readme = "README.md"
Expand Down Expand Up @@ -34,11 +34,11 @@ all-features = true
[dependencies]
smallvec = { version = "1.7", features = ["union", "const_generics", "const_new"] }
displaydoc = { version = "0.2.3", default-features = false }
icu_collections = { version = "1.0.0-beta1", path = "../../components/collections" }
icu_provider = { version = "1.0.0-beta1", path = "../../provider/core", features = ["macros"] }
icu_locid = { version = "1.0.0-beta1", path = "../../components/locid" }
icu_normalizer = { version = "1.0.0-beta1", path = "../../components/normalizer" }
icu_properties = { version = "1.0.0-beta1", path = "../../components/properties" }
icu_collections = { version = "1.0.0", path = "../../components/collections" }
icu_provider = { version = "1.0.0", path = "../../provider/core", features = ["macros"] }
icu_locid = { version = "1.0.0", path = "../../components/locid" }
icu_normalizer = { version = "1.0.0", path = "../../components/normalizer" }
icu_properties = { version = "1.0.0", path = "../../components/properties" }
serde = { version = "1.0", default-features = false, features = ["derive", "alloc"], optional = true }
zerovec = { version = "0.9", path = "../../utils/zerovec", features = ["serde"] }
utf8_iter = "1.0"
Expand Down
4 changes: 2 additions & 2 deletions components/collator/fuzz/Cargo.toml
Expand Up @@ -20,8 +20,8 @@ rust_icu_ucol = { path = "../../../../rust_icu/rust_icu_ucol", features = ["use-
rust_icu_sys = { path = "../../../../rust_icu/rust_icu_sys", features = ["use-bindgen", "icu_config"] }
rust_icu_ustring = { path = "../../../../rust_icu/rust_icu_ustring", features = ["use-bindgen", "icu_config"] }
encoding_rs = "0.8.31"
icu_locid = { version = "1.0.0-beta1", path = "../../../components/locid" }
icu_testdata = { version = "1.0.0-beta1", path = "../../../provider/testdata" }
icu_locid = { version = "1.0.0", path = "../../../components/locid" }
icu_testdata = { version = "1.0.0", path = "../../../provider/testdata" }
icu_collator = { path = ".." }

# Prevent this from interfering with workspaces
Expand Down
2 changes: 1 addition & 1 deletion components/collections/Cargo.toml
Expand Up @@ -5,7 +5,7 @@
[package]
name = "icu_collections"
description = "Collection of API for use in ICU libraries."
version = "1.0.0-beta1"
version = "1.0.0"
authors = ["The ICU4X Project Developers"]
edition = "2021"
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion components/collections/codepointtrie_builder/Cargo.toml
Expand Up @@ -25,7 +25,7 @@ include = [
]

[dependencies]
icu_collections = { version = "1.0.0-beta1", path = "..", features = ["serde"] }
icu_collections = { version = "1.0.0", path = "..", features = ["serde"] }
lazy_static = { version = "1.4.0" }
toml = "0.5"

Expand Down
16 changes: 8 additions & 8 deletions components/datetime/Cargo.toml
Expand Up @@ -5,7 +5,7 @@
[package]
name = "icu_datetime"
description = "API for formatting date and time to user readable textual representation"
version = "1.0.0-beta1"
version = "1.0.0"
authors = ["The ICU4X Project Developers"]
edition = "2018"
readme = "README.md"
Expand All @@ -32,12 +32,12 @@ denylist = ["bench"]
all-features = true

[dependencies]
icu_decimal = { version = "1.0.0-beta1", path = "../decimal" }
icu_locid = { version = "1.0.0-beta1", path = "../locid" }
icu_plurals = { version = "1.0.0-beta1", path = "../plurals" }
icu_provider = { version = "1.0.0-beta1", path = "../../provider/core", features = ["macros"] }
icu_calendar = { version = "1.0.0-beta1", path = "../calendar" }
icu_timezone = { version = "1.0.0-beta1", path = "../timezone" }
icu_decimal = { version = "1.0.0", path = "../decimal" }
icu_locid = { version = "1.0.0", path = "../locid" }
icu_plurals = { version = "1.0.0", path = "../plurals" }
icu_provider = { version = "1.0.0", path = "../../provider/core", features = ["macros"] }
icu_calendar = { version = "1.0.0", path = "../calendar" }
icu_timezone = { version = "1.0.0", path = "../timezone" }
writeable = { version = "0.5", path = "../../utils/writeable" }
litemap = { version = "0.6", path = "../../utils/litemap" }
tinystr = { version = "0.7", path = "../../utils/tinystr", features = ["alloc", "zerovec"], default-features = false }
Expand All @@ -54,7 +54,7 @@ fixed_decimal = { version = "0.5", path = "../../utils/fixed_decimal" }
criterion = "0.3"
icu = { path = "../icu", default-features = false }
icu_benchmark_macros = { version = "0.7", path = "../../tools/benchmark/macros" }
icu_provider = { version = "1.0.0-beta1", path = "../../provider/core" }
icu_provider = { version = "1.0.0", path = "../../provider/core" }
icu_provider_adapters = { path = "../../provider/adapters" }
icu_testdata = { path = "../../provider/testdata", default-features = false, features = ["buffer", "icu_datetime", "icu_timezone", "icu_calendar", "icu_decimal", "icu_plurals"] }

Expand Down
6 changes: 3 additions & 3 deletions components/decimal/Cargo.toml
Expand Up @@ -5,7 +5,7 @@
[package]
name = "icu_decimal"
description = "API for formatting basic decimal numbers in a locale-sensitive way"
version = "1.0.0-beta1"
version = "1.0.0"
authors = ["The ICU4X Project Developers"]
edition = "2018"
repository = "https://github.com/unicode-org/icu4x"
Expand All @@ -31,8 +31,8 @@ denylist = ["bench"]
all-features = true

[dependencies]
icu_locid = { version = "1.0.0-beta1", path = "../locid" }
icu_provider = { version = "1.0.0-beta1", path = "../../provider/core", features = ["macros"] }
icu_locid = { version = "1.0.0", path = "../locid" }
icu_provider = { version = "1.0.0", path = "../../provider/core", features = ["macros"] }
fixed_decimal = { version = "0.5", path = "../../utils/fixed_decimal" }
writeable = { version = "0.5", path = "../../utils/writeable" }
serde = { version = "1.0", default-features = false, features = ["derive", "alloc"], optional = true }
Expand Down

0 comments on commit ed5f968

Please sign in to comment.