v0.2.1
Fixes an issue with rashdf
's datetime parsing functionality to handle the way RAS represents midnight in string format as 24:00:00
rather than 00:00:00
of the next day. For example, a RAS datetime string of 31Dec2023 24:00:00
should parse to a Python datetime of datetime(year=2024, month=1, day=1, hour=0, minute=0, second=0)
, i.e., 00:00:00
on January 1.