Skip to content

Commit e7225b6

Browse files
committed
prepare 9.4.0 release
1 parent 40bc2e6 commit e7225b6

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
All Notable changes to `Csv` will be documented in this file
44

5-
## Next - TBD
5+
## 9.4.0 - 2019-10-02
66

77
### Added
88

docs/9.0/connections/bom.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,8 @@ $bom = $csv->getOutputBOM(); //returns "\xEF\xBB\xBF"
8080

8181
<p class="message-info">Since version <code>9.4.0</code>.</p>
8282

83+
If your document contains a BOM sequence by the following methods control its presence when processing it.
84+
8385
~~~php
8486
AbstractCsv::skipInputBOM(): self;
8587
AbstractCsv::includeInputBOM(): self;
@@ -90,7 +92,7 @@ AbstractCsv::isInputBOMIncluded(): bool;
9092
- `includeInputBOM`: preserves the input BOM from your CSV document while accessing its content.
9193
- `isInputBOMIncluded`: tells whether skipping or including the input BOM will be done.
9294

93-
<p class="message-notice">By default and to avoid BC Break, the Input BOM is skipped.</p>
95+
<p class="message-notice">By default and to avoid BC Break, the Input BOM, if present, is skipped.</p>
9496

9597
If your document does not contains any BOM sequence you can speed up the CSV iterator by preserving its presence which means
9698
that no operation to detect and remove it if present will take place.

0 commit comments

Comments
 (0)