diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..7786409 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,14 @@ +## v0.2 + +### Features + +- [#12](https://github.com/lukaswagner/csv-parser/issues/12): Added date columns. +- [#23](https://github.com/lukaswagner/csv-parser/issues/23), [#28](https://github.com/lukaswagner/csv-parser/issues/28): Added `view` accessor to all chunks which store a buffer view internally. + +### Bug Fixes + +- [#22](https://github.com/lukaswagner/csv-parser/issues/22): Calling `rebuildColumn` now rebuilds the underlying chunks as well. + +### Chores + +- [#21](https://github.com/lukaswagner/csv-parser/issues/21): Include `README.md` and `LICENSE` in npm releases. diff --git a/packages/csv-parser/package.json b/packages/csv-parser/package.json index 8d70b53..86095f4 100644 --- a/packages/csv-parser/package.json +++ b/packages/csv-parser/package.json @@ -7,7 +7,8 @@ "exports": "./lib/csv.js", "types": "./lib/types/csv.d.ts", "files": [ - "lib" + "lib", + "CHANGELOG.md" ], "scripts": { "build": "node scripts/build.js && tsc", diff --git a/packages/csv-parser/scripts/postpack.js b/packages/csv-parser/scripts/postpack.js index 1db132c..e8286e8 100644 --- a/packages/csv-parser/scripts/postpack.js +++ b/packages/csv-parser/scripts/postpack.js @@ -6,4 +6,5 @@ function remove(file) { } remove('README.md'); +remove('CHANGELOG.md'); remove('LICENSE'); diff --git a/packages/csv-parser/scripts/prepack.js b/packages/csv-parser/scripts/prepack.js index ac7f8af..44ea273 100644 --- a/packages/csv-parser/scripts/prepack.js +++ b/packages/csv-parser/scripts/prepack.js @@ -7,4 +7,5 @@ function copy(file) { } copy('README.md'); +copy('CHANGELOG.md'); copy('LICENSE');