From d21589c562e800ee022a6ceb9957e650215f34fd Mon Sep 17 00:00:00 2001 From: Manish Goregaokar Date: Thu, 20 Apr 2023 17:44:12 -0700 Subject: [PATCH] Update datagen to 1.2.3 --- CHANGELOG.md | 13 ++++++++----- Cargo.lock | 2 +- provider/datagen/Cargo.toml | 2 +- 3 files changed, 10 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c3093bf3df8..15e034f4bac 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,16 +1,19 @@ # Changelog -## icu4x 1.2.1 (Apr 17, 2023) +## icu4x 1.2.x (Apr 17, 2023) Note: A subset of crates received patch releases in the 1.2 stream. -- `icu_capi` +- `icu_capi` 1.2.1 - Fixed [#3344](https://github.com/unicode-org/icu4x/pull/3344), `buffer_provider` feature accidentally pulling in extra crates -- `icu_datagen` +- `icu_datagen` 1.2.1 - Fixed [#3339](https://github.com/unicode-org/icu4x/pull/3339), incorrect Cargo features -- `icu_locid_transform` +- `icu_datagen` 1.2.3 + - Fixed [#3356](https://github.com/unicode-org/icu4x/pull/3356), removing octal workarounds in baked data + - Fixed [#3369](https://github.com/unicode-org/icu4x/pull/3369), making datagen call `rustfmt` directly instead of using the `rust-format` dependency +- `icu_locid_transform` 1.2.1 - Fixed [#3332](https://github.com/unicode-org/icu4x/issues/3332), missing `+?Sized` bound -- `icu_segmenter` +- `icu_segmenter` 1.2.1 - Fixed [#3341](https://github.com/unicode-org/icu4x/pull/3341), incorrect results on some strings with mixed scripts ## icu4x 1.2 (Apr 13, 2023) diff --git a/Cargo.lock b/Cargo.lock index d088e84ff8a..385fe92b24e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1721,7 +1721,7 @@ dependencies = [ [[package]] name = "icu_datagen" -version = "1.2.2" +version = "1.2.3" dependencies = [ "cached-path", "clap 4.0.32", diff --git a/provider/datagen/Cargo.toml b/provider/datagen/Cargo.toml index 56deeae6b3a..e7ee23ca14a 100644 --- a/provider/datagen/Cargo.toml +++ b/provider/datagen/Cargo.toml @@ -5,7 +5,7 @@ [package] name = "icu_datagen" description = "Generate data for ICU4X DataProvider" -version = "1.2.2" +version = "1.2.3" authors = ["The ICU4X Project Developers"] edition = "2021" readme = "README.md"