Skip to content

Commit bdb41fd

Browse files
authored
Prepare release 0.2.1 (#706)
1 parent 0265261 commit bdb41fd

File tree

3 files changed

+27
-16
lines changed

3 files changed

+27
-16
lines changed

CHANGELOG.md

Lines changed: 16 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
## What's Changed in v0.2.1
2+
* Pin icu_calendar to v2.1 by @jedel1043 in [#704](https://github.com/boa-dev/temporal/pull/704)
3+
* Remove unwrap in PYM::epoch_ns_for_utc by @Manishearth in [#701](https://github.com/boa-dev/temporal/pull/701)
4+
* Fix bug with rounding with zoned RelativeTo and increment by @Manishearth in [#696](https://github.com/boa-dev/temporal/pull/696)
5+
* Add epoch_ns_for_utc to all Plain APIs by @Manishearth in [#700](https://github.com/boa-dev/temporal/pull/700)
6+
* Ensure offsets do not have more than 9 digits while parsing by @Manishearth in [#698](https://github.com/boa-dev/temporal/pull/698)
7+
* Do not overly range check when constructing Temporal PlainMonthDay by @Manishearth in [#695](https://github.com/boa-dev/temporal/pull/695)
8+
* Replace icu_locale with icu_locale_core by @Manishearth in [#694](https://github.com/boa-dev/temporal/pull/694)
9+
* docs: temporal is stage four by @ghostdevv in [#692](https://github.com/boa-dev/temporal/pull/692)
10+
* Expose fields needed for structured clone by @lucacasonato in [#686](https://github.com/boa-dev/temporal/pull/686)
11+
12+
## New Contributors
13+
* @ghostdevv made their first contribution in [#692](https://github.com/boa-dev/temporal/pull/692)
14+
* @lucacasonato made their first contribution in [#686](https://github.com/boa-dev/temporal/pull/686)
15+
116
## What's Changed in v0.2.0
217
* Fix incorrect decimal digits bug by @nekevss in [#679](https://github.com/boa-dev/temporal/pull/679)
318
* Update the documentation by @nekevss in [#680](https://github.com/boa-dev/temporal/pull/680)
@@ -34,10 +49,6 @@
3449

3550
**Full Changelog**: https://github.com/boa-dev/temporal/compare/v0.1.2...v0.2.0
3651

37-
# Changelog
38-
39-
All notable changes to this project will be documented in this file.
40-
4152
## What's Changed in v0.1.2
4253
* Publish 0.1.2 by @Manishearth in [#625](https://github.com/boa-dev/temporal/pull/625)
4354
* 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.
551562
* @nekevss made their first contribution in https://github.com/boa-dev/temporal/pull/1
552563
* @jedel1043 made their first contribution in https://github.com/boa-dev/temporal/pull/3
553564

554-
**Full Changelog**: https://github.com/boa-dev/temporal/commits/v0.0.1
565+
**Full Changelog**: https://github.com/boa-dev/temporal/commits/v0.0.1

Cargo.lock

Lines changed: 8 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ members = [
1111

1212
[workspace.package]
1313
edition = "2021"
14-
version = "0.2.0"
14+
version = "0.2.1"
1515
rust-version = "1.83.0"
1616
authors = ["boa-dev"]
1717
license = "MIT OR Apache-2.0"
@@ -29,8 +29,8 @@ exclude = [
2929

3030
[workspace.dependencies]
3131
# Self
32-
temporal_rs = { version = "0.2.0", path = ".", default-features = false }
33-
timezone_provider = { version = "0.2.0", path = "./provider", default-features = false }
32+
temporal_rs = { version = "0.2.1", path = ".", default-features = false }
33+
timezone_provider = { version = "0.2.1", path = "./provider", default-features = false }
3434
zoneinfo_rs = { version = "0.1.0", path = "./zoneinfo", default-features = false }
3535

3636
# Dependencies

0 commit comments

Comments
 (0)