Skip to content

Commit 94fc50f

Browse files
committed
chore: bump version number and update changelog
1 parent 6f7d780 commit 94fc50f

File tree

19 files changed

+52
-38
lines changed

19 files changed

+52
-38
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22

33
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.
44

5+
### [6.1.2](https://github.com/juanjodiaz/json2csv/compare/v6.1.1...v6.1.2) (2022-11-14)
6+
7+
8+
### Bug Fixes
9+
10+
* add cjs built files during prepublish ([e895ac3](https://github.com/juanjodiaz/json2csv/commit/e895ac3b0bb099bdef25341a8da4f05cdb4d2a9a))
11+
512
### [6.1.1](https://github.com/juanjodiaz/json2csv/compare/v6.1.0...v6.1.1) (2022-11-08)
613

714

docs/advanced-options/formatters.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ You can also select a specific version:
8181

8282
```html
8383
<script type="module">
84-
import default from 'https://cdn.jsdelivr.net/npm/@json2csv/[email protected].1/src/default.js';
84+
import default from 'https://cdn.jsdelivr.net/npm/@json2csv/[email protected].2/src/default.js';
8585
</script>
8686
```
8787

docs/advanced-options/transforms.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ You can also select a specific version:
5353

5454
```html
5555
<script type="module">
56-
import unwind from 'https://cdn.jsdelivr.net/npm/@json2csv/[email protected].1/src/unwind.js';
56+
import unwind from 'https://cdn.jsdelivr.net/npm/@json2csv/[email protected].2/src/unwind.js';
5757
</script>
5858
```
5959

docs/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -170,9 +170,9 @@
170170
<script src="//cdn.jsdelivr.net/npm/prismjs@1/components/prism-bash.min.js"></script>
171171
<script src="//cdn.jsdelivr.net/npm/vue@3/dist/vue.global.js"></script>
172172
<script type="module">
173-
import Json2csvStreamParser from "//cdn.jsdelivr.net/gh/juanjoDiaz/[email protected].1/dist/cdn/plainjs/StreamParser.js";
173+
import Json2csvStreamParser from "//cdn.jsdelivr.net/gh/juanjoDiaz/[email protected].2/dist/cdn/plainjs/StreamParser.js";
174174
window.Json2csvStreamParser = Json2csvStreamParser;
175-
import { flatten, unwind } from "//cdn.jsdelivr.net/gh/juanjoDiaz/[email protected].1/dist/cdn/transforms/index.js";
175+
import { flatten, unwind } from "//cdn.jsdelivr.net/gh/juanjoDiaz/[email protected].2/dist/cdn/transforms/index.js";
176176
window.Json2csvTransforms = { flatten, unwind };
177177
</script>
178178
</body>

docs/others/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22

33
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.
44

5+
### [6.1.2](https://github.com/juanjodiaz/json2csv/compare/v6.1.1...v6.1.2) (2022-11-14)
6+
7+
8+
### Bug Fixes
9+
10+
* add cjs built files during prepublish ([e895ac3](https://github.com/juanjodiaz/json2csv/commit/e895ac3b0bb099bdef25341a8da4f05cdb4d2a9a))
11+
512
### [6.1.1](https://github.com/juanjodiaz/json2csv/compare/v6.1.0...v6.1.1) (2022-11-08)
613

714

docs/parsers/parser.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ You can also select a specific version:
4242

4343
```html
4444
<script type="module">
45-
import Parser from 'https://cdn.jsdelivr.net/npm/@json2csv/[email protected].1/src/Parser.js';
45+
import Parser from 'https://cdn.jsdelivr.net/npm/@json2csv/[email protected].2/src/Parser.js';
4646
</script>
4747
```
4848

docs/parsers/stream-parser.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ You can also select a specific version:
4646

4747
```html
4848
<script type="module">
49-
import Parser from 'https://cdn.jsdelivr.net/npm/@json2csv/[email protected].1/src/StreamParser.js';
49+
import Parser from 'https://cdn.jsdelivr.net/npm/@json2csv/[email protected].2/src/StreamParser.js';
5050
</script>
5151
```
5252

docs/parsers/whatwg-async-parser.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ You can also select a specific version:
4141

4242
```html
4343
<script type="module">
44-
import Parser from 'https://cdn.jsdelivr.net/npm/@json2csv/[email protected].1/src/AsyncParser.js';
44+
import Parser from 'https://cdn.jsdelivr.net/npm/@json2csv/[email protected].2/src/AsyncParser.js';
4545
</script>
4646
```
4747

docs/parsers/whatwg-transform-stream.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ You can also select a specific version:
4444

4545
```html
4646
<script type="module">
47-
import Parser from 'https://cdn.jsdelivr.net/npm/@json2csv/[email protected].1/src/TransformStream.js';
47+
import Parser from 'https://cdn.jsdelivr.net/npm/@json2csv/[email protected].2/src/TransformStream.js';
4848
</script>
4949
```
5050

package-lock.json

Lines changed: 17 additions & 17 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)