Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump temporal_rs version and update changelog #76

Merged
merged 2 commits into from
Jul 8, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
9 changes: 0 additions & 9 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,8 @@
* Update duration rounding to new algorithms by @nekevss in [#65](https://github.com/boa-dev/temporal/pull/65)
* Remove `CalendarProtocol` and `TimeZoneProtocol` by @jedel1043 in [#66](https://github.com/boa-dev/temporal/pull/66)
* Use groups in dependabot updates by @jedel1043 in [#69](https://github.com/boa-dev/temporal/pull/69)
* Bump num-bigint from 0.4.5 to 0.4.6 by @dependabot[bot] in [#68](https://github.com/boa-dev/temporal/pull/68)
* Bump bitflags from 2.5.0 to 2.6.0 by @dependabot[bot] in [#67](https://github.com/boa-dev/temporal/pull/67)
* Ensure parsing throws with unknown critical annotations by @jedel1043 in [#63](https://github.com/boa-dev/temporal/pull/63)
* Reject `IsoDate` when outside the allowed range by @jedel1043 in [#62](https://github.com/boa-dev/temporal/pull/62)
* Bump rustc-hash from 1.1.0 to 2.0.0 by @dependabot[bot] in [#60](https://github.com/boa-dev/temporal/pull/60)
* Bump icu_calendar from 1.5.1 to 1.5.2 by @dependabot[bot] in [#59](https://github.com/boa-dev/temporal/pull/59)
* Avoid overflowing when calling `NormalizedTimeDuration::add_days` by @jedel1043 in [#61](https://github.com/boa-dev/temporal/pull/61)
* Ensure parsing throws when duplicate calendar is critical by @jedel1043 in [#58](https://github.com/boa-dev/temporal/pull/58)
* Fix rounding when the dividend is smaller than the divisor by @jedel1043 in [#57](https://github.com/boa-dev/temporal/pull/57)
Expand All @@ -22,14 +18,9 @@
* Patch `(un)balance_relative` to avoid panicking by @jedel1043 in [#48](https://github.com/boa-dev/temporal/pull/48)
* Cleanup rounding increment usages with new struct by @jedel1043 in [#54](https://github.com/boa-dev/temporal/pull/54)
* Add struct to encapsulate invariants of rounding increments by @jedel1043 in [#49](https://github.com/boa-dev/temporal/pull/49)
* Bump icu_calendar from 1.5.0 to 1.5.1 by @dependabot[bot] in [#52](https://github.com/boa-dev/temporal/pull/52)
* Bump tinystr from 0.7.5 to 0.7.6 by @dependabot[bot] in [#51](https://github.com/boa-dev/temporal/pull/51)
* Migrate parsing to `ixdtf` crate by @nekevss in [#50](https://github.com/boa-dev/temporal/pull/50)
* Bump `icu_calendar` to 1.5 by @jedel1043 in [#47](https://github.com/boa-dev/temporal/pull/47)
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

For example, this was excluded under the "^Bump" rule, which may not be the best approach.

* Fix method call in days_in_month by @nekevss in [#46](https://github.com/boa-dev/temporal/pull/46)
* Implement add & subtract methods for `DateTime` component by @nekevss in [#45](https://github.com/boa-dev/temporal/pull/45)
* Bump num-bigint from 0.4.4 to 0.4.5 by @dependabot[bot] in [#43](https://github.com/boa-dev/temporal/pull/43)
* Bump num-traits from 0.2.18 to 0.2.19 by @dependabot[bot] in [#42](https://github.com/boa-dev/temporal/pull/42)
* Fix panics when no relative_to is supplied to round by @nekevss in [#40](https://github.com/boa-dev/temporal/pull/40)
* Implement Time's until and since methods by @nekevss in [#36](https://github.com/boa-dev/temporal/pull/36)
* Implements `Date`'s `add`, `subtract`, `until`, and `since` methods by @nekevss in [#35](https://github.com/boa-dev/temporal/pull/35)
Expand Down
5 changes: 5 additions & 0 deletions cliff.toml
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,11 @@ commit_preprocessors = [
# remove issue numbers from commits
{ pattern = '\((\w+\s)?#([0-9]+)\)', replace = "" },
]
# Commit grouping
commit_parsers = [
{ message = "^Bump", skip = true },
{ message = "^chore(release):", skip = true},
]
# protect breaking changes from being skipped due to matching a skipping commit_parser
protect_breaking_commits = false
# filter out the commits that are not matched by commit parsers
Expand Down