Skip to content

Commit

Permalink
v0.3.23 release
Browse files Browse the repository at this point in the history
  • Loading branch information
jhpratt committed Jul 9, 2023
1 parent 8414f33 commit 3556ed1
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 3 deletions.
26 changes: 26 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,32 @@ The format is based on [Keep a Changelog]. This project adheres to [Semantic Ver

---

## 0.3.23 [2023-07-08]

### Added

- `Date::next_occurrence`
- `Date::prev_occurrence`
- `Date::nth_next_occurrence`
- `Date::nth_prev_occurrence`
- `Weekday::nth_prev`
- `Month::nth_next`
- `Month::nth_prev`

### Changed

**The minimum supported Rust version policy has been updated.** See [the README][msrv-policy] for
details.

[msrv-policy]: https://github.com/time-rs/time#minimum-rust-version-policy

### Fixed

- `Duration::abs` correctly returns `Duration::MAX` when near the minimum value. The nanoseconds
value was previously incorrect.
- Compliance with ISO 8601 has been improved. Previously, a UTC offset would be incorrectly rejected
in some cases.

## 0.3.22 [2023-06-07]

### Added
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ resolver = "2"

[workspace.dependencies]
time-core = { path = "time-core", version = "=0.1.1" }
time-macros = { path = "time-macros", version = "=0.2.9" }
time-macros = { path = "time-macros", version = "=0.2.10" }

criterion = { version = "0.4.0", default-features = false }
itoa = "1.0.1"
Expand Down
2 changes: 1 addition & 1 deletion time-macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "time-macros"
version = "0.2.9"
version = "0.2.10"
authors = ["Jacob Pratt <[email protected]>", "Time contributors"]
edition = "2021"
rust-version = "1.65.0"
Expand Down
2 changes: 1 addition & 1 deletion time/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "time"
version = "0.3.22"
version = "0.3.23"
authors = ["Jacob Pratt <[email protected]>", "Time contributors"]
edition = "2021"
rust-version = "1.65.0"
Expand Down

0 comments on commit 3556ed1

Please sign in to comment.