The Swift Evolution proposals.json file is moving to use full ISO 8601 date strings for review period start and end dates.
The default ISO8601DateFormatter will parse the updated date strings without additional configuration.
It appears the only dependency on the current format is the inputDateFormatter in SwiftEvolution.swift. Updating to use ISO8601DateFormatter should address the change.
static var inputDateFormatter = ISO8601DateFormatter()
The Swift Evolution
proposals.jsonfile is moving to use full ISO 8601 date strings for review period start and end dates.The default
ISO8601DateFormatterwill parse the updated date strings without additional configuration.It appears the only dependency on the current format is the
inputDateFormatterinSwiftEvolution.swift. Updating to useISO8601DateFormattershould address the change.