Skip to content

Commit

Permalink
add changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
lukaswagner committed Jan 26, 2022
1 parent 2505d3a commit 5a59b08
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 1 deletion.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
3 changes: 2 additions & 1 deletion packages/csv-parser/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
1 change: 1 addition & 0 deletions packages/csv-parser/scripts/postpack.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,5 @@ function remove(file) {
}

remove('README.md');
remove('CHANGELOG.md');
remove('LICENSE');
1 change: 1 addition & 0 deletions packages/csv-parser/scripts/prepack.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,5 @@ function copy(file) {
}

copy('README.md');
copy('CHANGELOG.md');
copy('LICENSE');

0 comments on commit 5a59b08

Please sign in to comment.