Skip to content

Commit 011e31f

Browse files
committed
Added release notes for #773
1 parent 718f542 commit 011e31f

File tree

3 files changed

+5
-1
lines changed

3 files changed

+5
-1
lines changed

release-notes/CREDITS-2.x

+2
Original file line numberDiff line numberDiff line change
@@ -290,6 +290,8 @@ Vlad Tatavu (vladt@github)
290290
PJ Fanning (pjfanning@github)
291291
* Contributed #744: Limit size of exception message in BigDecimalParser
292292
(2.13.3)
293+
* Contributed #773: Add option to accept non-standard trailing decimal point
294+
(2.14.0)
293295

294296
Ilya Golovin (ilgo0413@github)
295297
* Contributed #684: Add "JsonPointer#appendProperty" and "JsonPointer#appendIndex"

release-notes/VERSION-2.x

+2
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,8 @@ JSON library.
3636
(contributed by Evan G)
3737
#763: `JsonFactory.createParser()` with `File` may leak `InputStream`s
3838
#764: `JsonFactory.createGenerator()` with `File` may leak `OutputStream`s
39+
#773: Add option to accept non-standard trailing decimal point
40+
(contributed by @pjfanning)
3941

4042
2.13.3 (14-May-2022)
4143

src/main/java/com/fasterxml/jackson/core/json/JsonReadFeature.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ public enum JsonReadFeature
130130
* Since JSON specification does not allow trailing decimal points,
131131
* this is a non-standard feature, and as such disabled by default.
132132
*
133-
* @since 2.11
133+
* @since 2.14
134134
*/
135135
@SuppressWarnings("deprecation")
136136
ALLOW_TRAILING_DECIMAL_POINT_FOR_NUMBERS(false, JsonParser.Feature.ALLOW_TRAILING_DECIMAL_POINT_FOR_NUMBERS),

0 commit comments

Comments
 (0)