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
4 changes: 4 additions & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,7 @@
## Summary

* The dispatch-cli application now features fancy colors and formatting!

## Bug Fixes

* Fixed a bug where the dispatch-cli application would crash when reading a Dispatch with frequency YEARLY
1 change: 1 addition & 0 deletions src/frequenz/client/dispatch/recurrence.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ class Frequency(IntEnum):
Frequency.DAILY: rrule.DAILY,
Frequency.WEEKLY: rrule.WEEKLY,
Frequency.MONTHLY: rrule.MONTHLY,
Frequency.YEARLY: rrule.YEARLY,
}
"""To map from our Frequency enum to the dateutil library enum."""

Expand Down