Skip to content

Commit

Permalink
chore: bump version number and update changelog
Browse files Browse the repository at this point in the history
juanjoDiaz committed Aug 16, 2023
1 parent 5e3f4c5 commit 99c9595
Showing 19 changed files with 1,366 additions and 81 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
### [7.0.2](https://github.com/juanjodiaz/json2csv/compare/v7.0.1...v7.0.2) (2023-08-16)


### Bug Fixes

* wrong "main" in formatters package.json affecting eslint ([3179a05](https://github.com/juanjodiaz/json2csv/commit/3179a05957c3a357f7752b41b1ad0a77c4f2e54c))

### [7.0.1](https://github.com/juanjodiaz/json2csv/compare/v7.0.0...v7.0.1) (2023-05-31)


2 changes: 1 addition & 1 deletion docs/advanced-options/formatters.md
Original file line number Diff line number Diff line change
@@ -81,7 +81,7 @@ You can also select a specific version:

```html
<script type="module">
import default from 'https://cdn.jsdelivr.net/npm/@json2csv/formatters@7.0.1';
import default from 'https://cdn.jsdelivr.net/npm/@json2csv/formatters@7.0.2';
</script>
```

2 changes: 1 addition & 1 deletion docs/advanced-options/transforms.md
Original file line number Diff line number Diff line change
@@ -53,7 +53,7 @@ You can also select a specific version:

```html
<script type="module">
import unwind from 'https://cdn.jsdelivr.net/npm/@json2csv/transforms@7.0.1';
import unwind from 'https://cdn.jsdelivr.net/npm/@json2csv/transforms@7.0.2';
</script>
```

4 changes: 2 additions & 2 deletions docs/index.html
Original file line number Diff line number Diff line change
@@ -170,9 +170,9 @@
<script src="//cdn.jsdelivr.net/npm/prismjs@1/components/prism-bash.min.js"></script>
<script src="//cdn.jsdelivr.net/npm/vue@3/dist/vue.global.js"></script>
<script type="module">
import Json2csvStreamParser from "//cdn.jsdelivr.net/gh/juanjoDiaz/json2csv@7.0.1/dist/cdn/plainjs/StreamParser.js";
import Json2csvStreamParser from "//cdn.jsdelivr.net/gh/juanjoDiaz/json2csv@7.0.2/dist/cdn/plainjs/StreamParser.js";
window.Json2csvStreamParser = Json2csvStreamParser;
import { flatten, unwind } from "//cdn.jsdelivr.net/gh/juanjoDiaz/json2csv@7.0.1/dist/cdn/transforms/index.js";
import { flatten, unwind } from "//cdn.jsdelivr.net/gh/juanjoDiaz/json2csv@7.0.2/dist/cdn/transforms/index.js";
window.Json2csvTransforms = { flatten, unwind };
</script>
</body>
7 changes: 7 additions & 0 deletions docs/others/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
### [7.0.2](https://github.com/juanjodiaz/json2csv/compare/v7.0.1...v7.0.2) (2023-08-16)


### Bug Fixes

* wrong "main" in formatters package.json affecting eslint ([3179a05](https://github.com/juanjodiaz/json2csv/commit/3179a05957c3a357f7752b41b1ad0a77c4f2e54c))

### [7.0.1](https://github.com/juanjodiaz/json2csv/compare/v7.0.0...v7.0.1) (2023-05-31)


2 changes: 1 addition & 1 deletion docs/parsers/parser.md
Original file line number Diff line number Diff line change
@@ -42,7 +42,7 @@ You can also select a specific version:

```html
<script type="module">
import Parser from 'https://cdn.jsdelivr.net/npm/@json2csv/plainjs@7.0.1';
import Parser from 'https://cdn.jsdelivr.net/npm/@json2csv/plainjs@7.0.2';
</script>
```

2 changes: 1 addition & 1 deletion docs/parsers/stream-parser.md
Original file line number Diff line number Diff line change
@@ -46,7 +46,7 @@ You can also select a specific version:

```html
<script type="module">
import Parser from 'https://cdn.jsdelivr.net/npm/@json2csv/plainjs@7.0.1';
import Parser from 'https://cdn.jsdelivr.net/npm/@json2csv/plainjs@7.0.2';
</script>
```

2 changes: 1 addition & 1 deletion docs/parsers/whatwg-async-parser.md
Original file line number Diff line number Diff line change
@@ -41,7 +41,7 @@ You can also select a specific version:

```html
<script type="module">
import Parser from 'https://cdn.jsdelivr.net/npm/@json2csv/whatwg@7.0.1';
import Parser from 'https://cdn.jsdelivr.net/npm/@json2csv/whatwg@7.0.2';
</script>
```

2 changes: 1 addition & 1 deletion docs/parsers/whatwg-transform-stream.md
Original file line number Diff line number Diff line change
@@ -44,7 +44,7 @@ You can also select a specific version:

```html
<script type="module">
import Parser from 'https://cdn.jsdelivr.net/npm/@json2csv/whatwg@7.0.1';
import Parser from 'https://cdn.jsdelivr.net/npm/@json2csv/whatwg@7.0.2';
</script>
```

1,387 changes: 1,329 additions & 58 deletions package-lock.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "json2csv",
"version": "7.0.1",
"version": "7.0.2",
"private": true,
"description": "Fast and highly configurable JSON to CSV converter",
"keywords": [
8 changes: 4 additions & 4 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@json2csv/cli",
"version": "7.0.1",
"version": "7.0.2",
"description": "Command Line Interface to convert JSON to CSV.",
"keywords": [
"json",
@@ -39,9 +39,9 @@
"prepublishOnly": "npm run build"
},
"dependencies": {
"@json2csv/formatters": "^7.0.1",
"@json2csv/node": "^7.0.1",
"@json2csv/transforms": "^7.0.1",
"@json2csv/formatters": "^7.0.2",
"@json2csv/node": "^7.0.2",
"@json2csv/transforms": "^7.0.2",
"commander": "^11.0.0"
}
}
2 changes: 1 addition & 1 deletion packages/formatters/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@json2csv/formatters",
"version": "7.0.1",
"version": "7.0.2",
"description": "json2csv built-in formatters. A formatter is a function that receives the raw js value of a given type and formats it as a valid CSV cell.",
"keywords": [
"json",
4 changes: 2 additions & 2 deletions packages/node/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@json2csv/node",
"version": "7.0.1",
"version": "7.0.2",
"description": "Node.js Transform and Async interface to convert JSON into CSV.",
"keywords": [
"json",
@@ -51,6 +51,6 @@
"@types/node": "^20.1.7"
},
"dependencies": {
"@json2csv/plainjs": "^7.0.1"
"@json2csv/plainjs": "^7.0.2"
}
}
4 changes: 2 additions & 2 deletions packages/plainjs/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@json2csv/plainjs",
"version": "7.0.1",
"version": "7.0.2",
"description": "Pure Javascript JSON to CSV converter.",
"keywords": [
"json",
@@ -48,7 +48,7 @@
"prepublishOnly": "npm run build"
},
"dependencies": {
"@json2csv/formatters": "^7.0.1",
"@json2csv/formatters": "^7.0.2",
"@streamparser/json": "^0.0.16",
"lodash.get": "^4.4.2"
}
2 changes: 1 addition & 1 deletion packages/test-helpers/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@json2csv/test-helpers",
"version": "7.0.1",
"version": "7.0.2",
"description": "Test helper to test the json2csv libraries",
"homepage": "http://juanjodiaz.github.io/json2csv",
"bugs": {
2 changes: 1 addition & 1 deletion packages/test-performance/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@json2csv/test-performance",
"version": "7.0.1",
"version": "7.0.2",
"description": "Performance tests for json2csv",
"keywords": [
"json",
2 changes: 1 addition & 1 deletion packages/transforms/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@json2csv/transforms",
"version": "7.0.1",
"version": "7.0.2",
"description": "json2csv built-in transforms. A transform is a function that receives a data recod and returns a transformed record. Transforms are executed in order before converting the data record into a CSV row.",
"keywords": [
"json",
4 changes: 2 additions & 2 deletions packages/whatwg/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@json2csv/whatwg",
"version": "7.0.1",
"version": "7.0.2",
"description": "WHATWG Transform and Async interface to convert JSON into CSV.",
"keywords": [
"json",
@@ -48,6 +48,6 @@
"prepublishOnly": "npm run build"
},
"dependencies": {
"@json2csv/plainjs": "^7.0.1"
"@json2csv/plainjs": "^7.0.2"
}
}

0 comments on commit 99c9595

Please sign in to comment.