Skip to content

Commit f5ec035

Browse files
committed
132
1 parent 713c90e commit f5ec035

File tree

21 files changed

+202
-176
lines changed

21 files changed

+202
-176
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 52 additions & 53 deletions
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ exclude = [
114114
]
115115

116116
[workspace.package]
117-
version = "1.3.0"
117+
version = "1.3.2"
118118
rust-version = "1.66"
119119
authors = ["The ICU4X Project Developers"]
120120
edition = "2021"
@@ -137,64 +137,64 @@ include = [
137137
# KEEP IN SYNC WITH workspace.members and docs/tutorials/testing/patch.toml
138138

139139
# Components
140-
icu = { version = "~1.3.0", path = "components/icu", default-features = false }
141-
icu_calendar = { version = "~1.3.0", path = "components/calendar", default-features = false }
142-
icu_casemap = { version = "~1.3.0", path = "components/casemap", default-features = false }
143-
icu_collator = { version = "~1.3.0", path = "components/collator", default-features = false }
144-
icu_collections = { version = "~1.3.0", path = "components/collections", default-features = false }
145-
icu_codepointtrie_builder = { version = "0.3.5", path = "components/collections/codepointtrie_builder", default-features = false }
146-
icu_datetime = { version = "~1.3.0", path = "components/datetime", default-features = false }
147-
icu_decimal = { version = "~1.3.0", path = "components/decimal", default-features = false }
148-
icu_list = { version = "~1.3.0", path = "components/list", default-features = false }
149-
icu_locid = { version = "~1.3.0", path = "components/locid", default-features = false }
150-
icu_locid_transform = { version = "~1.3.0", path = "components/locid_transform", default-features = false }
151-
icu_normalizer = { version = "~1.3.0", path = "components/normalizer", default-features = false }
152-
icu_plurals = { version = "~1.3.0", path = "components/plurals", default-features = false }
153-
icu_properties = { version = "~1.3.0", path = "components/properties", default-features = false }
154-
icu_segmenter = { version = "~1.3.0", path = "components/segmenter", default-features = false }
155-
icu_timezone = { version = "~1.3.0", path = "components/timezone", default-features = false }
156-
icu_compactdecimal = { version = "0.2.1", path = "experimental/compactdecimal", default-features = false }
157-
icu_displaynames = { version = "0.11.0", path = "experimental/displaynames", default-features = false }
140+
icu = { version = "~1.3.2", path = "components/icu", default-features = false }
141+
icu_calendar = { version = "~1.3.2", path = "components/calendar", default-features = false }
142+
icu_casemap = { version = "~1.3.2", path = "components/casemap", default-features = false }
143+
icu_collator = { version = "~1.3.2", path = "components/collator", default-features = false }
144+
icu_collections = { version = "~1.3.2", path = "components/collections", default-features = false }
145+
icu_codepointtrie_builder = { version = "0.3.6", path = "components/collections/codepointtrie_builder", default-features = false }
146+
icu_datetime = { version = "~1.3.2", path = "components/datetime", default-features = false }
147+
icu_decimal = { version = "~1.3.2", path = "components/decimal", default-features = false }
148+
icu_list = { version = "~1.3.2", path = "components/list", default-features = false }
149+
icu_locid = { version = "~1.3.2", path = "components/locid", default-features = false }
150+
icu_locid_transform = { version = "~1.3.2", path = "components/locid_transform", default-features = false }
151+
icu_normalizer = { version = "~1.3.2", path = "components/normalizer", default-features = false }
152+
icu_plurals = { version = "~1.3.2", path = "components/plurals", default-features = false }
153+
icu_properties = { version = "~1.3.2", path = "components/properties", default-features = false }
154+
icu_segmenter = { version = "~1.3.2", path = "components/segmenter", default-features = false }
155+
icu_timezone = { version = "~1.3.2", path = "components/timezone", default-features = false }
156+
icu_compactdecimal = { version = "0.2.2", path = "experimental/compactdecimal", default-features = false }
157+
icu_displaynames = { version = "0.11.1", path = "experimental/displaynames", default-features = false }
158158
icu_personnames = { version = "0.0.0", path = "experimental/personnames", default-features = false }
159-
icu_relativetime = { version = "0.1.2", path = "experimental/relativetime", default-features = false }
159+
icu_relativetime = { version = "0.1.3", path = "experimental/relativetime", default-features = false }
160160
icu_singlenumberformatter = { version = "0.0.0", path = "experimental/single_number_formatter", default-features = false }
161-
icu_transliterate = { version = "0.1.0", path = "experimental/transliterate", default-features = false }
162-
icu_unicodeset_parse = { version = "0.1.0", path = "experimental/unicodeset_parse", default-features = false }
161+
icu_transliterate = { version = "0.1.1", path = "experimental/transliterate", default-features = false }
162+
icu_unicodeset_parse = { version = "0.1.1", path = "experimental/unicodeset_parse", default-features = false }
163163
icu_unitsconversion = { version = "0.0.0", path = "experimental/unitsconversion", default-features = false }
164164

165165
# Components data
166-
icu_calendar_data = { version = "~1.3.0", path = "components/calendar/data", default-features = false }
167-
icu_casemap_data = { version = "~1.3.0", path = "components/casemap/data", default-features = false }
168-
icu_collator_data = { version = "~1.3.0", path = "components/collator/data", default-features = false }
169-
icu_datetime_data = { version = "~1.3.0", path = "components/datetime/data", default-features = false }
170-
icu_decimal_data = { version = "~1.3.0", path = "components/decimal/data", default-features = false }
171-
icu_list_data = { version = "~1.3.0", path = "components/list/data", default-features = false }
172-
icu_locid_transform_data = { version = "~1.3.0", path = "components/locid_transform/data", default-features = false }
173-
icu_normalizer_data = { version = "~1.3.0", path = "components/normalizer/data", default-features = false }
174-
icu_plurals_data = { version = "~1.3.0", path = "components/plurals/data", default-features = false }
175-
icu_properties_data = { version = "~1.3.0", path = "components/properties/data", default-features = false }
176-
icu_segmenter_data = { version = "~1.3.0", path = "components/segmenter/data", default-features = false }
177-
icu_timezone_data = { version = "~1.3.0", path = "components/timezone/data", default-features = false }
178-
icu_compactdecimal_data = { version = "~1.3.0", path = "experimental/compactdecimal/data", default-features = false }
179-
icu_displaynames_data = { version = "~1.3.0", path = "experimental/displaynames/data", default-features = false }
180-
icu_relativetime_data = { version = "~1.3.0", path = "experimental/relativetime/data", default-features = false }
181-
icu_singlenumberformatter_data = { version = "~1.3.0", path = "experimental/single_number_formatter/data", default-features = false }
166+
icu_calendar_data = { version = "~1.3.2", path = "components/calendar/data", default-features = false }
167+
icu_casemap_data = { version = "~1.3.2", path = "components/casemap/data", default-features = false }
168+
icu_collator_data = { version = "~1.3.2", path = "components/collator/data", default-features = false }
169+
icu_datetime_data = { version = "~1.3.2", path = "components/datetime/data", default-features = false }
170+
icu_decimal_data = { version = "~1.3.2", path = "components/decimal/data", default-features = false }
171+
icu_list_data = { version = "~1.3.2", path = "components/list/data", default-features = false }
172+
icu_locid_transform_data = { version = "~1.3.2", path = "components/locid_transform/data", default-features = false }
173+
icu_normalizer_data = { version = "~1.3.2", path = "components/normalizer/data", default-features = false }
174+
icu_plurals_data = { version = "~1.3.2", path = "components/plurals/data", default-features = false }
175+
icu_properties_data = { version = "~1.3.2", path = "components/properties/data", default-features = false }
176+
icu_segmenter_data = { version = "~1.3.2", path = "components/segmenter/data", default-features = false }
177+
icu_timezone_data = { version = "~1.3.2", path = "components/timezone/data", default-features = false }
178+
icu_compactdecimal_data = { version = "~1.3.2", path = "experimental/compactdecimal/data", default-features = false }
179+
icu_displaynames_data = { version = "~1.3.2", path = "experimental/displaynames/data", default-features = false }
180+
icu_relativetime_data = { version = "~1.3.2", path = "experimental/relativetime/data", default-features = false }
181+
icu_singlenumberformatter_data = { version = "~1.3.2", path = "experimental/single_number_formatter/data", default-features = false }
182182

183183
# FFI
184-
icu_capi = { version = "~1.3.0", path = "ffi/diplomat", default-features = false }
185-
icu_capi_cdylib = { version = "~1.3.0", path = "ffi/capi_cdylib", default-features = false }
186-
icu_capi_staticlib = { version = "~1.3.0", path = "ffi/capi_staticlib", default-features = false }
184+
icu_capi = { version = "~1.3.2", path = "ffi/diplomat", default-features = false }
185+
icu_capi_cdylib = { version = "~1.3.2", path = "ffi/capi_cdylib", default-features = false }
186+
icu_capi_staticlib = { version = "~1.3.2", path = "ffi/capi_staticlib", default-features = false }
187187
icu4x_ecma402 = { version = "0.8.0", path = "ffi/ecma402", default-features = false }
188-
icu_freertos = { version = "~1.3.0", path = "ffi/freertos", default-features = false }
189-
icu_harfbuzz = { version = "~1.3.0", path = "experimental/harfbuzz", default-features = false }
188+
icu_freertos = { version = "~1.3.2", path = "ffi/freertos", default-features = false }
189+
icu_harfbuzz = { version = "~1.3.2", path = "experimental/harfbuzz", default-features = false }
190190

191191
# Provider
192-
icu_datagen = { version = "~1.3.0", path = "provider/datagen", default-features = false }
193-
icu_provider = { version = "~1.3.0", path = "provider/core", default-features = false }
194-
icu_provider_adapters = { version = "~1.3.0", path = "provider/adapters", default-features = false }
195-
icu_provider_blob = { version = "~1.3.0", path = "provider/blob", default-features = false }
196-
icu_provider_fs = { version = "~1.3.0", path = "provider/fs/", default-features = false }
197-
icu_provider_macros = { version = "~1.3.0", path = "provider/macros", default-features = false }
192+
icu_datagen = { version = "~1.3.2", path = "provider/datagen", default-features = false }
193+
icu_provider = { version = "~1.3.2", path = "provider/core", default-features = false }
194+
icu_provider_adapters = { version = "~1.3.2", path = "provider/adapters", default-features = false }
195+
icu_provider_blob = { version = "~1.3.2", path = "provider/blob", default-features = false }
196+
icu_provider_fs = { version = "~1.3.2", path = "provider/fs/", default-features = false }
197+
icu_provider_macros = { version = "~1.3.2", path = "provider/macros", default-features = false }
198198

199199
# Utils
200200
calendrical_calculations = { version = "0.1.0", path = "utils/calendrical_calculations", default-features = false }
@@ -212,12 +212,11 @@ yoke = { version = "0.7.2", path = "utils/yoke", default-features = false }
212212
yoke-derive = { version = "0.7.2", path = "utils/yoke/derive", default-features = false }
213213
zerofrom = { version = "0.1.2", path = "utils/zerofrom", default-features = false }
214214
zerofrom-derive = { version = "0.1.2", path = "utils/zerofrom/derive", default-features = false }
215-
# Remove this range bound next ICU4X version
216-
zerovec = { version = ">=0.9.4, <0.11.0", path = "utils/zerovec", default-features = false }
217-
zerovec-derive = { version = ">=0.9.4, <0.11.0", path = "utils/zerovec/derive", default-features = false }
215+
zerovec = { version = "0.10.0", path = "utils/zerovec", default-features = false }
216+
zerovec-derive = { version = "0.10.0", path = "utils/zerovec/derive", default-features = false }
218217
bies = { version = "0.2.2", path = "experimental/bies", default-features = false }
219218
ixdtf = { version = "0.1.1", path = "experimental/ixdtf", default-features = false }
220-
zerotrie = { version = "0.1.0", path = "experimental/zerotrie", default-features = false }
219+
zerotrie = { version = "0.1.1", path = "experimental/zerotrie", default-features = false }
221220

222221
# Tools
223222
icu_benchmark_macros = { path = "tools/benchmark/macros" }

components/collections/codepointtrie_builder/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_codepointtrie_builder"
77
description = "Runtime builder for CodePointTrie"
8-
version = "0.3.5"
8+
version = "0.3.6"
99
license-file = "LICENSE"
1010
include = [
1111
"src/**/*",

components/datetime/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
[package]
66
name = "icu_datetime"
77
description = "API for formatting date and time to user readable textual representation"
8-
version = "1.3.0"
98
license-file = "LICENSE"
109

1110
authors.workspace = true
@@ -15,6 +14,7 @@ homepage.workspace = true
1514
include.workspace = true
1615
repository.workspace = true
1716
rust-version.workspace = true
17+
version.workspace = true
1818

1919
[package.metadata.docs.rs]
2020
all-features = true

components/locid_transform/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
[package]
66
name = "icu_locid_transform"
77
description = "API for Unicode Language and Locale Identifiers canonicalization"
8-
version = "1.3.0"
98
license-file = "LICENSE"
109

1110
authors.workspace = true
@@ -15,6 +14,7 @@ homepage.workspace = true
1514
include.workspace = true
1615
repository.workspace = true
1716
rust-version.workspace = true
17+
version.workspace = true
1818

1919
[package.metadata.cargo-all-features]
2020
skip_optional_dependencies = true

components/segmenter/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
[package]
66
name = "icu_segmenter"
77
description = "Unicode line breaking and text segmentation algorithms for text boundaries analysis"
8-
version = "1.3.0"
98
license-file = "LICENSE"
109

1110
authors.workspace = true
@@ -15,6 +14,7 @@ homepage.workspace = true
1514
include.workspace = true
1615
repository.workspace = true
1716
rust-version.workspace = true
17+
version.workspace = true
1818

1919
[package.metadata.docs.rs]
2020
all-features = true

experimental/compactdecimal/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_compactdecimal"
77
description = "Compact decimal"
8-
version = "0.2.1"
8+
version = "0.2.2"
99
license-file = "LICENSE"
1010

1111
authors.workspace = true

experimental/displaynames/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_displaynames"
77
description = "API to enable the translation of Language and Region display names"
8-
version = "0.11.0"
8+
version = "0.11.1"
99
license-file = "LICENSE"
1010

1111
authors.workspace = true

experimental/relativetime/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_relativetime"
77
description = "Relative time formatting"
8-
version = "0.1.2"
8+
version = "0.1.3"
99
license-file = "LICENSE"
1010

1111
authors.workspace = true

experimental/transliterate/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_transliterate"
77
description = "API for Transliteration"
8-
version = "0.1.0"
8+
version = "0.1.1"
99
license-file = "LICENSE"
1010

1111
authors.workspace = true

0 commit comments

Comments
 (0)