diff --git a/CHANGELOG.md b/CHANGELOG.md index 53bfbf221..0490c54d4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,18 @@ +## What's Changed in v0.2.1 +* Pin icu_calendar to v2.1 by @jedel1043 in [#704](https://github.com/boa-dev/temporal/pull/704) +* Remove unwrap in PYM::epoch_ns_for_utc by @Manishearth in [#701](https://github.com/boa-dev/temporal/pull/701) +* Fix bug with rounding with zoned RelativeTo and increment by @Manishearth in [#696](https://github.com/boa-dev/temporal/pull/696) +* Add epoch_ns_for_utc to all Plain APIs by @Manishearth in [#700](https://github.com/boa-dev/temporal/pull/700) +* Ensure offsets do not have more than 9 digits while parsing by @Manishearth in [#698](https://github.com/boa-dev/temporal/pull/698) +* Do not overly range check when constructing Temporal PlainMonthDay by @Manishearth in [#695](https://github.com/boa-dev/temporal/pull/695) +* Replace icu_locale with icu_locale_core by @Manishearth in [#694](https://github.com/boa-dev/temporal/pull/694) +* docs: temporal is stage four by @ghostdevv in [#692](https://github.com/boa-dev/temporal/pull/692) +* Expose fields needed for structured clone by @lucacasonato in [#686](https://github.com/boa-dev/temporal/pull/686) + +## New Contributors +* @ghostdevv made their first contribution in [#692](https://github.com/boa-dev/temporal/pull/692) +* @lucacasonato made their first contribution in [#686](https://github.com/boa-dev/temporal/pull/686) + ## What's Changed in v0.2.0 * Fix incorrect decimal digits bug by @nekevss in [#679](https://github.com/boa-dev/temporal/pull/679) * Update the documentation by @nekevss in [#680](https://github.com/boa-dev/temporal/pull/680) @@ -34,10 +49,6 @@ **Full Changelog**: https://github.com/boa-dev/temporal/compare/v0.1.2...v0.2.0 -# Changelog - -All notable changes to this project will be documented in this file. - ## What's Changed in v0.1.2 * Publish 0.1.2 by @Manishearth in [#625](https://github.com/boa-dev/temporal/pull/625) * Ignore timezones mentioned in zone.tab when constructing the canonicalization table by @Manishearth in [#624](https://github.com/boa-dev/temporal/pull/624) @@ -551,4 +562,4 @@ All notable changes to this project will be documented in this file. * @nekevss made their first contribution in https://github.com/boa-dev/temporal/pull/1 * @jedel1043 made their first contribution in https://github.com/boa-dev/temporal/pull/3 -**Full Changelog**: https://github.com/boa-dev/temporal/commits/v0.0.1 \ No newline at end of file +**Full Changelog**: https://github.com/boa-dev/temporal/commits/v0.0.1 diff --git a/Cargo.lock b/Cargo.lock index 2e90d4611..2115b83c3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -117,7 +117,7 @@ checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26" [[package]] name = "bakeddata" -version = "0.2.0" +version = "0.2.1" dependencies = [ "databake", "prettyplease", @@ -285,7 +285,7 @@ dependencies = [ [[package]] name = "depcheck" -version = "0.2.0" +version = "0.2.1" [[package]] name = "diplomat" @@ -301,7 +301,7 @@ dependencies = [ [[package]] name = "diplomat-gen" -version = "0.2.0" +version = "0.2.1" dependencies = [ "diplomat-tool", ] @@ -863,7 +863,7 @@ dependencies = [ [[package]] name = "temporal_capi" -version = "0.2.0" +version = "0.2.1" dependencies = [ "diplomat", "diplomat-runtime", @@ -878,7 +878,7 @@ dependencies = [ [[package]] name = "temporal_rs" -version = "0.2.0" +version = "0.2.1" dependencies = [ "core_maths", "iana-time-zone", @@ -897,7 +897,7 @@ dependencies = [ [[package]] name = "timezone_provider" -version = "0.2.0" +version = "0.2.1" dependencies = [ "combine", "databake", @@ -979,7 +979,7 @@ dependencies = [ [[package]] name = "tzif-inspect" -version = "0.2.0" +version = "0.2.1" dependencies = [ "jiff-tzdb", "temporal_rs", @@ -1312,7 +1312,7 @@ dependencies = [ [[package]] name = "zoneinfo-test-gen" -version = "0.2.0" +version = "0.2.1" dependencies = [ "clap", "serde", diff --git a/Cargo.toml b/Cargo.toml index a594b1387..935d7b8fb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,7 +11,7 @@ members = [ [workspace.package] edition = "2021" -version = "0.2.0" +version = "0.2.1" rust-version = "1.83.0" authors = ["boa-dev"] license = "MIT OR Apache-2.0" @@ -29,8 +29,8 @@ exclude = [ [workspace.dependencies] # Self -temporal_rs = { version = "0.2.0", path = ".", default-features = false } -timezone_provider = { version = "0.2.0", path = "./provider", default-features = false } +temporal_rs = { version = "0.2.1", path = ".", default-features = false } +timezone_provider = { version = "0.2.1", path = "./provider", default-features = false } zoneinfo_rs = { version = "0.1.0", path = "./zoneinfo", default-features = false } # Dependencies