diff --git a/CHANGELOG.md b/CHANGELOG.md index f8a670721..b14b555cb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,7 @@ All notable changes to this project will be documented in this file. ## What's Changed in v0.2.3 * Update zoneinfo64 and Diplomat by @Manishearth in [#713](https://github.com/boa-dev/temporal/pull/713) +* Update icu_calendar to fix `with()` regression by @Manishearth in [#716](https://github.com/boa-dev/temporal/pull/716) **Full Changelog**: https://github.com/boa-dev/temporal/compare/v0.2.2...v0.2.3 diff --git a/Cargo.lock b/Cargo.lock index ae4ff5a1c..d587b852b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -441,9 +441,9 @@ dependencies = [ [[package]] name = "icu_calendar" -version = "2.2.0" +version = "2.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "baf11bd83ebd0cd319e23a9a9c9a25b564a1fadc3bbc93069b8abc9d8df812bf" +checksum = "a2b2acc6263f494f1df50685b53ff8e57869e47d5c6fe39c23d518ae9a4f3e45" dependencies = [ "calendrical_calculations", "displaydoc", diff --git a/Cargo.toml b/Cargo.toml index 41e6e7d7c..7ae32303f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -45,7 +45,7 @@ web-time = "1.1.0" # ICU4X tinystr = "0.8.0" -icu_calendar = { version = "2.2.0", default-features = false } +icu_calendar = { version = "2.2.1", default-features = false } icu_locale_core = "2.1.0" zerovec = "0.11.0" databake = "0.2.0"