Skip to content

Commit

Permalink
chore(docs): Update Changelog with proper breaking changes, and fix h…
Browse files Browse the repository at this point in the history
…omepage link
  • Loading branch information
zackerydev committed Feb 13, 2024
1 parent e27701c commit fd3f91b
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 41 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline

# [5.0.0](https://github.com/C2FO/fast-csv/compare/v4.3.6...v5.0.0) (2024-01-13)

# BREAKING CHANGES

- **deps!:** Dropped support for Node.js versions 10, 12, 14 and 15 [#833](https://github.com/C2FO/fast-csv/issues/833)

### Bug Fixes

- Added missing single quote in error message ([#656](https://github.com/C2FO/fast-csv/issues/656)) ([b9dceab](https://github.com/C2FO/fast-csv/commit/b9dceab207024c75b5bc0a5efb8120ddfebad1f6))
Expand Down
82 changes: 41 additions & 41 deletions packages/fast-csv/package.json
Original file line number Diff line number Diff line change
@@ -1,43 +1,43 @@
{
"name": "fast-csv",
"version": "5.0.0",
"description": "CSV parser and writer",
"main": "./build/src/index.js",
"types": "./build/src/index.d.ts",
"scripts": {
"prepublishOnly": "npm run build",
"build": "npm run clean && npm run compile",
"clean": "rm -rf ./build && rm -rf tsconfig.tsbuildinfo",
"compile": "tsc"
},
"directories": {
"lib": "src",
"test": "__tests__"
},
"files": [
"build/src/**"
],
"repository": {
"type": "git",
"url": "git+https://github.com/C2FO/fast-csv.git",
"directory": "packages/fast-csv"
},
"keywords": [
"csv",
"parser",
"fast",
"writer",
"csv writer",
"CSV"
],
"homepage": "https://c2fo.io/fast-csv",
"author": "Doug Martin",
"license": "MIT",
"engines": {
"node": ">=10.0.0"
},
"dependencies": {
"@fast-csv/format": "5.0.0",
"@fast-csv/parse": "5.0.0"
}
"name": "fast-csv",
"version": "5.0.0",
"description": "CSV parser and writer",
"main": "./build/src/index.js",
"types": "./build/src/index.d.ts",
"scripts": {
"prepublishOnly": "npm run build",
"build": "npm run clean && npm run compile",
"clean": "rm -rf ./build && rm -rf tsconfig.tsbuildinfo",
"compile": "tsc"
},
"directories": {
"lib": "src",
"test": "__tests__"
},
"files": [
"build/src/**"
],
"repository": {
"type": "git",
"url": "git+https://github.com/C2FO/fast-csv.git",
"directory": "packages/fast-csv"
},
"keywords": [
"csv",
"parser",
"fast",
"writer",
"csv writer",
"CSV"
],
"homepage": "https://c2fo.github.io/fast-csv",
"author": "Doug Martin",
"license": "MIT",
"engines": {
"node": ">=10.0.0"
},
"dependencies": {
"@fast-csv/format": "5.0.0",
"@fast-csv/parse": "5.0.0"
}
}

0 comments on commit fd3f91b

Please sign in to comment.