Skip to content
This repository was archived by the owner on Dec 19, 2024. It is now read-only.

Commit 321175b

Browse files
committed
update release notes
1 parent b280169 commit 321175b

File tree

3 files changed

+7
-1
lines changed

3 files changed

+7
-1
lines changed

release-notes/CREDITS

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,4 +57,5 @@ Roland Huss (rhuss@github)
5757

5858
- Reported #77, contributed fix: Boolean-like content of string must never be unquoted
5959
(2.8.4)
60-
60+
- Contributed #76: Add `YAMLGenerator.Feature.LITERAL_BLOCK_STYLE` for String output
61+
(2.9.0)

release-notes/VERSION

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ Project: jackson-dataformat-yaml
66

77
2.9.0 (not yet released)
88

9+
#76: Add `YAMLGenerator.Feature.LITERAL_BLOCK_STYLE` for String output
10+
(contributed by Roland H)
11+
912
2.8.4 (not yet released)
1013

1114
#77: Boolean-like content of string must never be unquoted

src/main/java/com/fasterxml/jackson/dataformat/yaml/YAMLGenerator.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,8 @@ public enum Feature // implements FormatFeature // for 2.7
9999
* <p>
100100
* The content of such strings is limited to printable characters according to the rules of
101101
* <a href="http://www.yaml.org/spec/1.2/spec.html#style/block/literal">literal block style</a>.
102+
*
103+
* @since 2.9
102104
*/
103105
LITERAL_BLOCK_STYLE(false)
104106
;

0 commit comments

Comments
 (0)