Skip to content
This repository was archived by the owner on Jan 22, 2019. It is now read-only.

Commit 016d956

Browse files
committed
Updated release notes wrt #127
1 parent 2233798 commit 016d956

File tree

3 files changed

+11
-0
lines changed

3 files changed

+11
-0
lines changed

release-notes/CREDITS

+6
Original file line numberDiff line numberDiff line change
@@ -88,3 +88,9 @@ Peter Ansell (ansell@github)
8888

8989
* Contributed fix for #128: Write out headers even if no data rows written
9090
(2.7.7)
91+
92+
George Fraser (georgewfraser@github)
93+
94+
* Contributed #127: Add `CsvGenerator.Feature.ALWAYS_QUOTE_EMPTY_STRINGS` to allow forced
95+
quoting of empty Strings.
96+
(2.9.0)

release-notes/VERSION

+3
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ Project: jackson-dataformat-csv
66

77
2.9.0 (not yet released)
88

9+
#127: Add `CsvGenerator.Feature.ALWAYS_QUOTE_EMPTY_STRINGS` to allow forced
10+
quoting of empty Strings.
11+
(contributed by georgewfraser@github)
912
#130: Add fluent addColumns operation to CsvSchema.Builder
1013
(contributed by Peter A)
1114

src/main/java/com/fasterxml/jackson/dataformat/csv/CsvGenerator.java

+2
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,8 @@ public enum Feature
6868
/**
6969
* Feature that determines whether values written as empty Strings (from <code>java.lang.String</code>
7070
* valued POJO properties) should be forced to be quoted.
71+
*
72+
* @since 2.9
7173
*/
7274
ALWAYS_QUOTE_EMPTY_STRINGS(false),
7375
;

0 commit comments

Comments
 (0)