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 May 31, 2023
1 parent f87e599 commit b43c7dd
Showing 19 changed files with 59 additions and 45 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.1](https://github.com/juanjodiaz/json2csv/compare/v7.0.0...v7.0.1) (2023-05-31)


### Bug Fixes

* Maximum call stack size exceeded on whatwg interface ([ea44d4e](https://github.com/juanjodiaz/json2csv/commit/ea44d4e642c38529610b509383c034cb9cf41696))

# Changelog

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4 changes: 2 additions & 2 deletions docs/advanced-options/formatters.md
Original file line number Diff line number Diff line change
@@ -73,15 +73,15 @@ You can import the latest version:

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

You can also select a specific version:

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

4 changes: 2 additions & 2 deletions docs/advanced-options/transforms.md
Original file line number Diff line number Diff line change
@@ -45,15 +45,15 @@ You can import the latest version:

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

You can also select a specific version:

```html
<script type="module">
import unwind from 'https://cdn.jsdelivr.net/npm/@json2csv/transforms@7.0.0/src/unwind.js';
import unwind from 'https://cdn.jsdelivr.net/npm/@json2csv/transforms@7.0.1';
</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.0/dist/cdn/plainjs/StreamParser.js";
import Json2csvStreamParser from "//cdn.jsdelivr.net/gh/juanjoDiaz/json2csv@7.0.1/dist/cdn/plainjs/StreamParser.js";
window.Json2csvStreamParser = Json2csvStreamParser;
import { flatten, unwind } from "//cdn.jsdelivr.net/gh/juanjoDiaz/json2csv@7.0.0/dist/cdn/transforms/index.js";
import { flatten, unwind } from "//cdn.jsdelivr.net/gh/juanjoDiaz/json2csv@7.0.1/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.1](https://github.com/juanjodiaz/json2csv/compare/v7.0.0...v7.0.1) (2023-05-31)


### Bug Fixes

* Maximum call stack size exceeded on whatwg interface ([ea44d4e](https://github.com/juanjodiaz/json2csv/commit/ea44d4e642c38529610b509383c034cb9cf41696))

# Changelog

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4 changes: 2 additions & 2 deletions docs/parsers/parser.md
Original file line number Diff line number Diff line change
@@ -34,15 +34,15 @@ You can import the latest version:

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

You can also select a specific version:

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

4 changes: 2 additions & 2 deletions docs/parsers/stream-parser.md
Original file line number Diff line number Diff line change
@@ -38,15 +38,15 @@ You can import the latest version:

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

You can also select a specific version:

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

4 changes: 2 additions & 2 deletions docs/parsers/whatwg-async-parser.md
Original file line number Diff line number Diff line change
@@ -33,15 +33,15 @@ You can import the latest version:

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

You can also select a specific version:

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

4 changes: 2 additions & 2 deletions docs/parsers/whatwg-transform-stream.md
Original file line number Diff line number Diff line change
@@ -36,15 +36,15 @@ You can import the latest version:

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

You can also select a specific version:

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

32 changes: 16 additions & 16 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

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.0",
"version": "7.0.1",
"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.0",
"version": "7.0.1",
"description": "Command Line Interface to convert JSON to CSV.",
"keywords": [
"json",
@@ -39,9 +39,9 @@
"prepublishOnly": "npm run build"
},
"dependencies": {
"@json2csv/formatters": "^7.0.0",
"@json2csv/node": "^7.0.0",
"@json2csv/transforms": "^7.0.0",
"@json2csv/formatters": "^7.0.1",
"@json2csv/node": "^7.0.1",
"@json2csv/transforms": "^7.0.1",
"commander": "^10.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.0",
"version": "7.0.1",
"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.0",
"version": "7.0.1",
"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.0"
"@json2csv/plainjs": "^7.0.1"
}
}
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.0",
"version": "7.0.1",
"description": "Pure Javascript JSON to CSV converter.",
"keywords": [
"json",
@@ -48,7 +48,7 @@
"prepublishOnly": "npm run build"
},
"dependencies": {
"@json2csv/formatters": "^7.0.0",
"@json2csv/formatters": "^7.0.1",
"@streamparser/json": "^0.0.15",
"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.0",
"version": "7.0.1",
"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.0",
"version": "7.0.1",
"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.0",
"version": "7.0.1",
"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.0",
"version": "7.0.1",
"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.0"
"@json2csv/plainjs": "^7.0.1"
}
}

0 comments on commit b43c7dd

Please sign in to comment.