Skip to content

Commit

Permalink
Update CHANGELOG
Browse files Browse the repository at this point in the history
  • Loading branch information
sestrella committed Jun 9, 2022
1 parent 0cd7be1 commit a2d4bc8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Versions with only mechanical changes will be omitted from the following list.
* Make `ParseErrorKind` public and available through `ParseError::kind()` (#588)
* Implement `DoubleEndedIterator` for `NaiveDateDaysIterator` and `NaiveDateWeeksIterator`
* Fix panicking when parsing a `DateTime` (@botahamec)
* Add support for getting week bounds based on a specific date and a `Weekday` for `NaiveDate` and `Date` (#666)
* Add support for getting week bounds based on a specific `NaiveDate` and a `Weekday` (#666)

## 0.4.19

Expand Down
2 changes: 1 addition & 1 deletion src/naive/date.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2517,7 +2517,7 @@ mod tests {
}

#[test]
fn test_naiveweek_first_and_last_day() {
fn test_naiveweek() {
let date = NaiveDate::from_ymd(2022, 5, 18);
let asserts = vec![
(Weekday::Mon, "2022-05-16", "2022-05-22"),
Expand Down

0 comments on commit a2d4bc8

Please sign in to comment.