Skip to content

Commit 5a91263

Browse files
committed
Updated release notes wrt #131
1 parent 31a46ad commit 5a91263

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

datetime/src/main/java/com/fasterxml/jackson/datatype/jsr310/deser/InstantDeserializer.java

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -342,17 +342,16 @@ private String replaceZeroOffsetAsZIfNecessary(String text)
342342
return text;
343343
}
344344

345+
// @since 2.13
345346
private String addInColonToOffsetIfMissing(String text)
346347
{
347-
Matcher matcher = ISO8601_COLONLESS_OFFSET_REGEX.matcher(text);
348-
348+
final Matcher matcher = ISO8601_COLONLESS_OFFSET_REGEX.matcher(text);
349349
if (matcher.find()){
350350
StringBuilder sb = new StringBuilder(matcher.group(0));
351351
sb.insert(3, ":");
352352

353353
return matcher.replaceFirst(sb.toString());
354354
}
355-
356355
return text;
357356
}
358357

release-notes/CREDITS-2.x

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -145,3 +145,6 @@ Gökhan Öner (gokhanoner@github)
145145
* Reported #207: Fail to serialize `TemporalAdjuster` type with 2.12
146146
(2.12.3)
147147

148+
Øystein B. Huseby (oeystein@github)
149+
* Contributed #131: Deserializing ZonedDateTime with basic TZ offset notation (0000)
150+
(2.13.0)

release-notes/VERSION-2.x

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ Modules:
1010

1111
2.13.0 (not yet released)
1212

13+
#131: Deserializing ZonedDateTime with basic TZ offset notation (0000)
14+
(contributed by Øystein H)
1315
#212: Make LocalDateDeserializer consider strict/lenient on accepting (or not)
1416
of "time" part
1517

0 commit comments

Comments
 (0)