diff --git a/History.md b/History.md index 6b91eebf..b3c68ddf 100644 --- a/History.md +++ b/History.md @@ -1,3 +1,9 @@ +# v0.4.3 + +* Added ability to include a `rowDelimiter` at the end of a csv with the `includeEndRowDelimiter` optioin [#54](https://github.com/C2FO/fast-csv/issues/54) +* Added escaping for values that include a row delimiter +* Added more tests for new feature and escaping row delimiter values. + # v0.4.2 * Added ability to specify a rowDelimiter when creating a csv. diff --git a/README.md b/README.md index a2279712..19e52b47 100644 --- a/README.md +++ b/README.md @@ -217,6 +217,7 @@ Formatting accepts the same options as parsing with an additional `transform` op * `transform(row)`: A function that accepts a row and returns a transformed one to be written. * `rowDelimiter='\n'`: Specify an alternate row delimiter (i.e `\r\n`) +* `includeEndRowDelimiter=false`: Set to `true` to include a row delimiter at the end of the csv. **`createWriteStream(options)`** diff --git a/docs/History.html b/docs/History.html index de4caf67..229e0017 100644 --- a/docs/History.html +++ b/docs/History.html @@ -176,6 +176,12 @@ +

v0.4.3

+

v0.4.2