Skip to content

Commit 851a129

Browse files
committed
1 parent bff158f commit 851a129

File tree

10 files changed

+53
-10
lines changed

10 files changed

+53
-10
lines changed

demo/eslint/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
### [0.1.1](https://github.com/adaltas/node-csv/compare/[email protected]@0.1.1) (2022-06-14)
7+
8+
**Note:** Version bump only for package csv-demo-eslint
9+
10+
11+
12+
13+
614
## 0.1.0 (2022-05-24)
715

816

demo/eslint/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "csv-demo-eslint",
3-
"version": "0.1.0",
3+
"version": "0.1.1",
44
"description": "",
55
"main": "index.js",
66
"private": true,
@@ -10,7 +10,7 @@
1010
},
1111
"license": "MIT",
1212
"dependencies": {
13-
"csv-stringify": "^6.1.0"
13+
"csv-stringify": "^6.1.1"
1414
},
1515
"devDependencies": {
1616
"eslint": "^8.16.0",

demo/esm/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
### [0.0.4](https://github.com/adaltas/node-csv/compare/[email protected]@0.0.4) (2022-06-14)
7+
8+
**Note:** Version bump only for package csv-demo-esm
9+
10+
11+
12+
13+
614
### [0.0.3](https://github.com/adaltas/node-csv/compare/[email protected]@0.0.3) (2022-05-24)
715

816

demo/esm/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{
22
"name": "csv-demo-esm",
3-
"version": "0.0.3",
3+
"version": "0.0.4",
44
"main": "index.js",
55
"license": "MIT",
66
"type": "module",
77
"private": true,
88
"dependencies": {
9-
"csv": "^6.1.0",
10-
"csv-parse": "^5.1.0"
9+
"csv": "^6.1.1",
10+
"csv-parse": "^5.2.0"
1111
},
1212
"devDependencies": {
1313
"coffeescript": "^2.7.0",

packages/csv-parse/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,15 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [5.2.0](https://github.com/adaltas/node-csv/compare/[email protected]@5.2.0) (2022-06-14)
7+
8+
9+
### Features
10+
11+
* **csv-parse:** cast_date as a function (fix [#342](https://github.com/adaltas/node-csv/issues/342)) ([2807d29](https://github.com/adaltas/node-csv/commit/2807d292c8987f5dedde4f7fe0bd0ac7f75c8755))
12+
13+
14+
615
## [5.1.0](https://github.com/adaltas/node-csv/compare/[email protected]@5.1.0) (2022-05-24)
716

817

packages/csv-parse/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "5.1.0",
2+
"version": "5.2.0",
33
"name": "csv-parse",
44
"description": "CSV parsing implementing the Node.js `stream.Transform` API",
55
"keywords": [

packages/csv-stringify/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,15 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
### [6.1.1](https://github.com/adaltas/node-csv/compare/[email protected]@6.1.1) (2022-06-14)
7+
8+
9+
### Bug Fixes
10+
11+
* **csv-stringify:** bom and header in sync mode with no records (fix [#343](https://github.com/adaltas/node-csv/issues/343)) ([bff158f](https://github.com/adaltas/node-csv/commit/bff158fbc9001b2cf7177ecd0f16dc97edac55f2))
12+
13+
14+
615
## [6.1.0](https://github.com/adaltas/node-csv/compare/[email protected]@6.1.0) (2022-05-24)
716

817

packages/csv-stringify/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "6.1.0",
2+
"version": "6.1.1",
33
"name": "csv-stringify",
44
"description": "CSV stringifier implementing the Node.js `stream.Transform` API",
55
"keywords": [

packages/csv/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,15 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
### [6.1.1](https://github.com/adaltas/node-csv/compare/[email protected]@6.1.1) (2022-06-14)
7+
8+
9+
### Bug Fixes
10+
11+
* **csv-stringify:** bom and header in sync mode with no records (fix [#343](https://github.com/adaltas/node-csv/issues/343)) ([bff158f](https://github.com/adaltas/node-csv/commit/bff158fbc9001b2cf7177ecd0f16dc97edac55f2))
12+
13+
14+
615
## [6.1.0](https://github.com/adaltas/node-csv/compare/[email protected]@6.1.0) (2022-05-24)
716

817

packages/csv/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "csv",
3-
"version": "6.1.0",
3+
"version": "6.1.1",
44
"description": "A mature CSV toolset with simple api, full of options and tested against large datasets.",
55
"keywords": [
66
"node",
@@ -22,8 +22,8 @@
2222
],
2323
"dependencies": {
2424
"csv-generate": "^4.1.0",
25-
"csv-parse": "^5.1.0",
26-
"csv-stringify": "^6.1.0",
25+
"csv-parse": "^5.2.0",
26+
"csv-stringify": "^6.1.1",
2727
"stream-transform": "^3.1.0"
2828
},
2929
"devDependencies": {

0 commit comments

Comments
 (0)