Skip to content

Commit ed5f968

Browse files
authored
Bump all crate versions to 1.0 (#2662)
(except for segmenter and casemapping, they are 0.7)
1 parent a17377f commit ed5f968

File tree

36 files changed

+216
-216
lines changed

36 files changed

+216
-216
lines changed

Cargo.lock

Lines changed: 26 additions & 26 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ An example `ICU4X` powered application in Rust may look like below...
3030

3131
```toml
3232
[dependencies]
33-
icu = { version = "1.0.0-beta1", features = ["serde"] }
34-
icu_testdata = "1.0.0-beta1"
33+
icu = { version = "1.0.0", features = ["serde"] }
34+
icu_testdata = "1.0.0"
3535
```
3636

3737
`src/main.rs`:

components/calendar/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
[package]
66
name = "icu_calendar"
77
description = "API for supporting various types of calendars"
8-
version = "1.0.0-beta1"
8+
version = "1.0.0"
99
authors = ["The ICU4X Project Developers"]
1010
edition = "2018"
1111
readme = "README.md"
@@ -40,8 +40,8 @@ denylist = ["bench"]
4040
[dependencies]
4141
displaydoc = { version = "0.2.3", default-features = false }
4242
tinystr = { version = "0.7", path = "../../utils/tinystr", features = ["alloc", "zerovec"], default-features = false }
43-
icu_provider = { version = "1.0.0-beta1", path = "../../provider/core", features = ["macros"] }
44-
icu_locid = { version = "1.0.0-beta1", path = "../../components/locid" }
43+
icu_provider = { version = "1.0.0", path = "../../provider/core", features = ["macros"] }
44+
icu_locid = { version = "1.0.0", path = "../../components/locid" }
4545
serde = { version = "1.0", default-features = false, features = ["derive", "alloc"], optional = true }
4646
zerovec = { version = "0.9", path = "../../utils/zerovec", default-features = false, features = ["derive"] }
4747
databake = { version = "0.1.0", path = "../../utils/databake", optional = true, features = ["derive"] }

components/collator/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
[package]
66
name = "icu_collator"
77
description = "API for comparing strings according to language-dependent conventions"
8-
version = "1.0.0-beta1"
8+
version = "1.0.0"
99
authors = ["The ICU4X Project Developers"]
1010
edition = "2018"
1111
readme = "README.md"
@@ -34,11 +34,11 @@ all-features = true
3434
[dependencies]
3535
smallvec = { version = "1.7", features = ["union", "const_generics", "const_new"] }
3636
displaydoc = { version = "0.2.3", default-features = false }
37-
icu_collections = { version = "1.0.0-beta1", path = "../../components/collections" }
38-
icu_provider = { version = "1.0.0-beta1", path = "../../provider/core", features = ["macros"] }
39-
icu_locid = { version = "1.0.0-beta1", path = "../../components/locid" }
40-
icu_normalizer = { version = "1.0.0-beta1", path = "../../components/normalizer" }
41-
icu_properties = { version = "1.0.0-beta1", path = "../../components/properties" }
37+
icu_collections = { version = "1.0.0", path = "../../components/collections" }
38+
icu_provider = { version = "1.0.0", path = "../../provider/core", features = ["macros"] }
39+
icu_locid = { version = "1.0.0", path = "../../components/locid" }
40+
icu_normalizer = { version = "1.0.0", path = "../../components/normalizer" }
41+
icu_properties = { version = "1.0.0", path = "../../components/properties" }
4242
serde = { version = "1.0", default-features = false, features = ["derive", "alloc"], optional = true }
4343
zerovec = { version = "0.9", path = "../../utils/zerovec", features = ["serde"] }
4444
utf8_iter = "1.0"

components/collator/fuzz/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ rust_icu_ucol = { path = "../../../../rust_icu/rust_icu_ucol", features = ["use-
2020
rust_icu_sys = { path = "../../../../rust_icu/rust_icu_sys", features = ["use-bindgen", "icu_config"] }
2121
rust_icu_ustring = { path = "../../../../rust_icu/rust_icu_ustring", features = ["use-bindgen", "icu_config"] }
2222
encoding_rs = "0.8.31"
23-
icu_locid = { version = "1.0.0-beta1", path = "../../../components/locid" }
24-
icu_testdata = { version = "1.0.0-beta1", path = "../../../provider/testdata" }
23+
icu_locid = { version = "1.0.0", path = "../../../components/locid" }
24+
icu_testdata = { version = "1.0.0", path = "../../../provider/testdata" }
2525
icu_collator = { path = ".." }
2626

2727
# Prevent this from interfering with workspaces

components/collections/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
[package]
66
name = "icu_collections"
77
description = "Collection of API for use in ICU libraries."
8-
version = "1.0.0-beta1"
8+
version = "1.0.0"
99
authors = ["The ICU4X Project Developers"]
1010
edition = "2021"
1111
readme = "README.md"

components/collections/codepointtrie_builder/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ include = [
2525
]
2626

2727
[dependencies]
28-
icu_collections = { version = "1.0.0-beta1", path = "..", features = ["serde"] }
28+
icu_collections = { version = "1.0.0", path = "..", features = ["serde"] }
2929
lazy_static = { version = "1.4.0" }
3030
toml = "0.5"
3131

components/datetime/Cargo.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
[package]
66
name = "icu_datetime"
77
description = "API for formatting date and time to user readable textual representation"
8-
version = "1.0.0-beta1"
8+
version = "1.0.0"
99
authors = ["The ICU4X Project Developers"]
1010
edition = "2018"
1111
readme = "README.md"
@@ -32,12 +32,12 @@ denylist = ["bench"]
3232
all-features = true
3333

3434
[dependencies]
35-
icu_decimal = { version = "1.0.0-beta1", path = "../decimal" }
36-
icu_locid = { version = "1.0.0-beta1", path = "../locid" }
37-
icu_plurals = { version = "1.0.0-beta1", path = "../plurals" }
38-
icu_provider = { version = "1.0.0-beta1", path = "../../provider/core", features = ["macros"] }
39-
icu_calendar = { version = "1.0.0-beta1", path = "../calendar" }
40-
icu_timezone = { version = "1.0.0-beta1", path = "../timezone" }
35+
icu_decimal = { version = "1.0.0", path = "../decimal" }
36+
icu_locid = { version = "1.0.0", path = "../locid" }
37+
icu_plurals = { version = "1.0.0", path = "../plurals" }
38+
icu_provider = { version = "1.0.0", path = "../../provider/core", features = ["macros"] }
39+
icu_calendar = { version = "1.0.0", path = "../calendar" }
40+
icu_timezone = { version = "1.0.0", path = "../timezone" }
4141
writeable = { version = "0.5", path = "../../utils/writeable" }
4242
litemap = { version = "0.6", path = "../../utils/litemap" }
4343
tinystr = { version = "0.7", path = "../../utils/tinystr", features = ["alloc", "zerovec"], default-features = false }
@@ -54,7 +54,7 @@ fixed_decimal = { version = "0.5", path = "../../utils/fixed_decimal" }
5454
criterion = "0.3"
5555
icu = { path = "../icu", default-features = false }
5656
icu_benchmark_macros = { version = "0.7", path = "../../tools/benchmark/macros" }
57-
icu_provider = { version = "1.0.0-beta1", path = "../../provider/core" }
57+
icu_provider = { version = "1.0.0", path = "../../provider/core" }
5858
icu_provider_adapters = { path = "../../provider/adapters" }
5959
icu_testdata = { path = "../../provider/testdata", default-features = false, features = ["buffer", "icu_datetime", "icu_timezone", "icu_calendar", "icu_decimal", "icu_plurals"] }
6060

components/decimal/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
[package]
66
name = "icu_decimal"
77
description = "API for formatting basic decimal numbers in a locale-sensitive way"
8-
version = "1.0.0-beta1"
8+
version = "1.0.0"
99
authors = ["The ICU4X Project Developers"]
1010
edition = "2018"
1111
repository = "https://github.com/unicode-org/icu4x"
@@ -31,8 +31,8 @@ denylist = ["bench"]
3131
all-features = true
3232

3333
[dependencies]
34-
icu_locid = { version = "1.0.0-beta1", path = "../locid" }
35-
icu_provider = { version = "1.0.0-beta1", path = "../../provider/core", features = ["macros"] }
34+
icu_locid = { version = "1.0.0", path = "../locid" }
35+
icu_provider = { version = "1.0.0", path = "../../provider/core", features = ["macros"] }
3636
fixed_decimal = { version = "0.5", path = "../../utils/fixed_decimal" }
3737
writeable = { version = "0.5", path = "../../utils/writeable" }
3838
serde = { version = "1.0", default-features = false, features = ["derive", "alloc"], optional = true }

0 commit comments

Comments
 (0)