Skip to content

Commit 3fa7ff0

Browse files
Bump icu_properties (#7291)
As discussed in #7269
1 parent 9d734c2 commit 3fa7ff0

File tree

5 files changed

+10
-5
lines changed

5 files changed

+10
-5
lines changed

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
11
# Changelog
22

33
## Unreleased
4-
4+
- Components
5+
- `icu_properties`
6+
- Fix some property constants (unicode-org#7269, unicode-org#7281, unicode-org#7284)
7+
- Add conversions for `unicode_bidi::BidiClass` (unicode-org#7272)
8+
- Add `IndicConjunctBreak` (unicode-org#7280)
59
- Utils
610
- Retire the `icu_harfbuzz` crate. The `icu_properties` and `icu_normalizer` types now directly implement the `harfbuzz-traits`
711

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

components/properties/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_properties"
77
description = "Definitions for Unicode properties"
8-
version.workspace = true
8+
version = "2.1.2"
99

1010
authors.workspace = true
1111
categories.workspace = true

components/properties/src/props.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -941,7 +941,8 @@ impl Script {
941941
#[doc(hidden)]
942942
#[allow(non_upper_case_globals)]
943943
#[deprecated]
944-
pub const Chisoi: Script = Self(254);
944+
// Some high value that ICU4C will not use anytime soon
945+
pub const Chisoi: Script = Self(60_000);
945946
}
946947

947948
/// ✨ *Enabled with the `compiled_data` Cargo feature.*

utils/host_info/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)