YYYY-MM-DD in UTC, matching the existing CHANGELOG date format.
()
| 79 | |
| 80 | |
| 81 | def today_utc_iso() -> str: |
| 82 | """YYYY-MM-DD in UTC, matching the existing CHANGELOG date format.""" |
| 83 | return datetime.datetime.now(datetime.timezone.utc).date().isoformat() |
| 84 | |
| 85 | |
| 86 | def parse_changelog(text: str): |