Skip to content

Commit 9a59d86

Browse files
chore(release): publish v5.0.2
1 parent d37d0ae commit 9a59d86

25 files changed

+27821
-27757
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,13 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
55

66
## [5.0.2](https://github.com/C2FO/fast-csv/compare/v5.0.1...v5.0.2) (2024-10-22)
77

8+
### Bug Fixes
9+
10+
- **deps:** update docusaurus monorepo to v3.3.2 ([#888](https://github.com/C2FO/fast-csv/issues/888)) ([60f5e27](https://github.com/C2FO/fast-csv/commit/60f5e2759f8d4455dd39745aab88a6eb6f97e83d))
11+
- **deps:** update docusaurus monorepo to v3.4.0 ([#961](https://github.com/C2FO/fast-csv/issues/961)) ([cef2f2e](https://github.com/C2FO/fast-csv/commit/cef2f2ece4612db7d52bac8bbc34dd181c2b19c0))
12+
13+
## [5.0.2](https://github.com/C2FO/fast-csv/compare/v5.0.1...v5.0.2) (2024-10-22)
14+
815
** Note: ** Docs libraries update
916

1017
## [5.0.1](https://github.com/C2FO/fast-csv/compare/v5.0.0...v5.0.1) (2024-02-13)

documentation/CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,13 @@
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.0.2](https://github.com/C2FO/fast-csv/compare/v5.0.1...v5.0.2) (2024-10-22)
7+
8+
### Bug Fixes
9+
10+
- **deps:** update docusaurus monorepo to v3.3.2 ([#888](https://github.com/C2FO/fast-csv/issues/888)) ([60f5e27](https://github.com/C2FO/fast-csv/commit/60f5e2759f8d4455dd39745aab88a6eb6f97e83d))
11+
- **deps:** update docusaurus monorepo to v3.4.0 ([#961](https://github.com/C2FO/fast-csv/issues/961)) ([cef2f2e](https://github.com/C2FO/fast-csv/commit/cef2f2ece4612db7d52bac8bbc34dd181c2b19c0))
12+
613
# [5.0.0](https://github.com/C2FO/fast-csv/compare/v4.3.6...v5.0.0) (2024-01-13)
714

815
### Bug Fixes

documentation/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@fast-csv/docs",
3-
"version": "5.0.0",
3+
"version": "5.0.2",
44
"private": true,
55
"scripts": {
66
"start": "docusaurus start --port=3001",

examples/benchmark/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
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.0.2](https://github.com/C2FO/fast-csv/compare/v5.0.1...v5.0.2) (2024-10-22)
7+
8+
**Note:** Version bump only for package fast-csv-benchmarks
9+
610
## [5.0.1](https://github.com/C2FO/fast-csv/compare/v5.0.0...v5.0.1) (2024-02-13)
711

812
**Note:** Version bump only for package fast-csv-benchmarks

examples/benchmark/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
22
"name": "fast-csv-benchmarks",
3-
"version": "5.0.1",
3+
"version": "5.0.2",
44
"private": true,
55
"description": "fast-csv examples",
66
"dependencies": {
7-
"fast-csv": "5.0.1"
7+
"fast-csv": "5.0.2"
88
},
99
"scripts": {
1010
"benchmarks": "node ./index.js"

examples/fast-csv-js/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
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.0.2](https://github.com/C2FO/fast-csv/compare/v5.0.1...v5.0.2) (2024-10-22)
7+
8+
**Note:** Version bump only for package fast-csv-js-examples
9+
610
## [5.0.1](https://github.com/C2FO/fast-csv/compare/v5.0.0...v5.0.1) (2024-02-13)
711

812
**Note:** Version bump only for package fast-csv-js-examples

examples/fast-csv-js/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "fast-csv-js-examples",
3-
"version": "5.0.1",
3+
"version": "5.0.2",
44
"private": true,
55
"description": "fast-csv examples",
66
"scripts": {
@@ -10,6 +10,6 @@
1010
},
1111
"dependencies": {
1212
"example-runner": "5.0.0",
13-
"fast-csv": "5.0.1"
13+
"fast-csv": "5.0.2"
1414
}
1515
}

examples/fast-csv-ts/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
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.0.2](https://github.com/C2FO/fast-csv/compare/v5.0.1...v5.0.2) (2024-10-22)
7+
8+
**Note:** Version bump only for package fast-csv-ts-examples
9+
610
## [5.0.1](https://github.com/C2FO/fast-csv/compare/v5.0.0...v5.0.1) (2024-02-13)
711

812
**Note:** Version bump only for package fast-csv-ts-examples

examples/fast-csv-ts/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "fast-csv-ts-examples",
3-
"version": "5.0.1",
3+
"version": "5.0.2",
44
"private": true,
55
"description": "fast-csv examples",
66
"scripts": {
@@ -13,7 +13,7 @@
1313
},
1414
"dependencies": {
1515
"example-runner": "5.0.0",
16-
"fast-csv": "5.0.1",
16+
"fast-csv": "5.0.2",
1717
"typescript": "5.3.3"
1818
}
1919
}

examples/formatting-js/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
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.0.2](https://github.com/C2FO/fast-csv/compare/v5.0.1...v5.0.2) (2024-10-22)
7+
8+
**Note:** Version bump only for package @fast-csv/format-js-examples
9+
610
# [5.0.0](https://github.com/C2FO/fast-csv/compare/v4.3.6...v5.0.0) (2024-01-13)
711

812
**Note:** Version bump only for package @fast-csv/format-js-examples

examples/formatting-js/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@fast-csv/format-js-examples",
3-
"version": "5.0.0",
3+
"version": "5.0.2",
44
"private": true,
55
"description": "fast-csv formatting examples",
66
"scripts": {
@@ -9,7 +9,7 @@
99
"example": "run-examples run"
1010
},
1111
"dependencies": {
12-
"@fast-csv/format": "5.0.0",
12+
"@fast-csv/format": "5.0.2",
1313
"example-runner": "5.0.0"
1414
}
1515
}

examples/formatting-ts/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
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.0.2](https://github.com/C2FO/fast-csv/compare/v5.0.1...v5.0.2) (2024-10-22)
7+
8+
**Note:** Version bump only for package @fast-csv/formatting-ts-examples
9+
610
# [5.0.0](https://github.com/C2FO/fast-csv/compare/v4.3.6...v5.0.0) (2024-01-13)
711

812
**Note:** Version bump only for package @fast-csv/formatting-ts-examples

examples/formatting-ts/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@fast-csv/formatting-ts-examples",
3-
"version": "5.0.0",
3+
"version": "5.0.2",
44
"private": true,
55
"description": "fast-csv formatting typescript examples",
66
"scripts": {
@@ -12,7 +12,7 @@
1212
"compile": "tsc"
1313
},
1414
"dependencies": {
15-
"@fast-csv/format": "5.0.0",
15+
"@fast-csv/format": "5.0.2",
1616
"example-runner": "5.0.0",
1717
"typescript": "5.3.3"
1818
}

examples/parsing-js/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
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.0.2](https://github.com/C2FO/fast-csv/compare/v5.0.1...v5.0.2) (2024-10-22)
7+
8+
**Note:** Version bump only for package @fast-csv/parse-js-examples
9+
610
# [5.0.0](https://github.com/C2FO/fast-csv/compare/v4.3.6...v5.0.0) (2024-01-13)
711

812
**Note:** Version bump only for package @fast-csv/parse-js-examples

examples/parsing-js/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@fast-csv/parse-js-examples",
3-
"version": "5.0.0",
3+
"version": "5.0.2",
44
"private": true,
55
"description": "fast-csv parsing examples",
66
"scripts": {
@@ -9,7 +9,7 @@
99
"example": "run-examples run"
1010
},
1111
"dependencies": {
12-
"@fast-csv/parse": "5.0.0",
12+
"@fast-csv/parse": "5.0.2",
1313
"example-runner": "5.0.0"
1414
}
1515
}

examples/parsing-ts/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
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.0.2](https://github.com/C2FO/fast-csv/compare/v5.0.1...v5.0.2) (2024-10-22)
7+
8+
**Note:** Version bump only for package @fast-csv/parse-ts-examples
9+
610
# [5.0.0](https://github.com/C2FO/fast-csv/compare/v4.3.6...v5.0.0) (2024-01-13)
711

812
**Note:** Version bump only for package @fast-csv/parse-ts-examples

examples/parsing-ts/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@fast-csv/parse-ts-examples",
3-
"version": "5.0.0",
3+
"version": "5.0.2",
44
"private": true,
55
"description": "fast-csv parsing typescript examples",
66
"scripts": {
@@ -12,7 +12,7 @@
1212
"compile": "tsc"
1313
},
1414
"dependencies": {
15-
"@fast-csv/parse": "5.0.0",
15+
"@fast-csv/parse": "5.0.2",
1616
"example-runner": "5.0.0",
1717
"typescript": "5.3.3"
1818
}

lerna.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@
1212
"hoist": true
1313
}
1414
},
15-
"version": "5.0.1"
15+
"version": "5.0.2"
1616
}

0 commit comments

Comments
 (0)