Releases: ethlo/itu
Releases · ethlo/itu
v1.7.7
1.7.6
v1.7.5
- Releasing a minified version for scenarios where every KB counts. Use
<classifier>small</classifier>
to use it. - Even faster parsing performance. 1.7.5 is more than twice as fast as 1.7.0.
- NOTE: Parsing to
OffsetDateTime
now emit error messages closer to parsing viajava.time
.
1.7.4
v1.7.3
Added OSGI support - thanks to @marcoSpoethAtYatta
v1.7.2
v1.7.1
v1.7.0
v1.6.1
New helper methods were added to deal with different granularity.
Validate to different required granularity:
ITU.isValid("2017-12-06", TemporalType.LOCAL_DATE_TIME);
Allowing handling different levels of granularity:
return ITU.parse("2017-12-06", new TemporalHandler<>()
{
@Override
public OffsetDateTime handle(final LocalDate localDate)
{
return localDate.atTime(OffsetTime.of(LocalTime.of(0, 0), ZoneOffset.UTC));
}
@Override
public OffsetDateTime handle(final OffsetDateTime offsetDateTime)
{
return offsetDateTime;
}
});