Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 16 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)
Expand Down Expand Up @@ -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)
Expand Down Expand Up @@ -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
**Full Changelog**: https://github.com/boa-dev/temporal/commits/v0.0.1
16 changes: 8 additions & 8 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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
Expand Down