Skip to content

Commit

Permalink
chore: bump version number and update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
juanjoDiaz committed Aug 16, 2023
1 parent 5e3f4c5 commit 99c9595
Show file tree
Hide file tree
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)


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

```html
<script type="module">
import default from 'https://cdn.jsdelivr.net/npm/@json2csv/[email protected].1';
import default from 'https://cdn.jsdelivr.net/npm/@json2csv/[email protected].2';
</script>
```

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

```html
<script type="module">
import unwind from 'https://cdn.jsdelivr.net/npm/@json2csv/[email protected].1';
import unwind from 'https://cdn.jsdelivr.net/npm/@json2csv/[email protected].2';
</script>
```

Expand Down
4 changes: 2 additions & 2 deletions docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -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/[email protected].1/dist/cdn/plainjs/StreamParser.js";
import Json2csvStreamParser from "//cdn.jsdelivr.net/gh/juanjoDiaz/[email protected].2/dist/cdn/plainjs/StreamParser.js";
window.Json2csvStreamParser = Json2csvStreamParser;
import { flatten, unwind } from "//cdn.jsdelivr.net/gh/juanjoDiaz/[email protected].1/dist/cdn/transforms/index.js";
import { flatten, unwind } from "//cdn.jsdelivr.net/gh/juanjoDiaz/[email protected].2/dist/cdn/transforms/index.js";
window.Json2csvTransforms = { flatten, unwind };
</script>
</body>
Expand Down
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)


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

```html
<script type="module">
import Parser from 'https://cdn.jsdelivr.net/npm/@json2csv/[email protected].1';
import Parser from 'https://cdn.jsdelivr.net/npm/@json2csv/[email protected].2';
</script>
```

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

```html
<script type="module">
import Parser from 'https://cdn.jsdelivr.net/npm/@json2csv/[email protected].1';
import Parser from 'https://cdn.jsdelivr.net/npm/@json2csv/[email protected].2';
</script>
```

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

```html
<script type="module">
import Parser from 'https://cdn.jsdelivr.net/npm/@json2csv/[email protected].1';
import Parser from 'https://cdn.jsdelivr.net/npm/@json2csv/[email protected].2';
</script>
```

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

```html
<script type="module">
import Parser from 'https://cdn.jsdelivr.net/npm/@json2csv/[email protected].1';
import Parser from 'https://cdn.jsdelivr.net/npm/@json2csv/[email protected].2';
</script>
```

Expand Down
Loading

0 comments on commit 99c9595

Please sign in to comment.