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 Nov 8, 2022
1 parent b883329 commit b8f190e
Show file tree
Hide file tree
Showing 16 changed files with 49 additions and 35 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

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.

### [6.1.1](https://github.com/juanjodiaz/json2csv/compare/v6.1.0...v6.1.1) (2022-11-08)


### Bug Fixes

* avoid unnecessary exception on flattenReducer ([8b7dd1e](https://github.com/juanjodiaz/json2csv/commit/8b7dd1eca04be9d0ae5b569f759a5ab04b69493c))

## [6.1.0](https://github.com/juanjodiaz/json2csv/compare/v6.0.0...v6.1.0) (2022-10-30)


Expand Down
7 changes: 7 additions & 0 deletions docs/others/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

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.

### [6.1.1](https://github.com/juanjodiaz/json2csv/compare/v6.1.0...v6.1.1) (2022-11-08)


### Bug Fixes

* avoid unnecessary exception on flattenReducer ([8b7dd1e](https://github.com/juanjodiaz/json2csv/commit/8b7dd1eca04be9d0ae5b569f759a5ab04b69493c))

## [6.1.0](https://github.com/juanjodiaz/json2csv/compare/v6.0.0...v6.1.0) (2022-10-30)


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/plainjs@6.1.0/src/Parser.js';
import Parser from 'https://cdn.jsdelivr.net/npm/@json2csv/plainjs@6.1.1/src/Parser.js';
</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/plainjs@6.1.0/src/StreamParser.js';
import Parser from 'https://cdn.jsdelivr.net/npm/@json2csv/plainjs@6.1.1/src/StreamParser.js';
</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/whatwg@6.1.0/src/AsyncParser.js';
import Parser from 'https://cdn.jsdelivr.net/npm/@json2csv/whatwg@6.1.1/src/AsyncParser.js';
</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/whatwg@6.1.0/src/TransformStream.js';
import Parser from 'https://cdn.jsdelivr.net/npm/@json2csv/whatwg@6.1.1/src/TransformStream.js';
</script>
```

Expand Down
36 changes: 18 additions & 18 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": "6.1.0",
"version": "6.1.1",
"private": true,
"description": "Fast and highly configurable JSON to CSV converter",
"keywords": [
Expand Down
4 changes: 2 additions & 2 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@json2csv/cli",
"version": "6.1.0",
"version": "6.1.1",
"description": "Command Line Interface to convert JSON to CSV.",
"keywords": [
"json",
Expand Down Expand Up @@ -35,7 +35,7 @@
"deprendencies:update-internal": "npm uninstall @json2csv/node && npm install @json2csv/node"
},
"dependencies": {
"@json2csv/node": "^6.1.0",
"@json2csv/node": "^6.1.1",
"commander": "^9.3.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": "6.1.0",
"version": "6.1.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",
Expand Down
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": "6.1.0",
"version": "6.1.1",
"description": "Node.js Transform and Async interface to convert JSON into CSV.",
"keywords": [
"json",
Expand Down Expand Up @@ -44,6 +44,6 @@
"deprendencies:update-internal": "npm uninstall @json2csv/plainjs && npm install @json2csv/plainjs"
},
"dependencies": {
"@json2csv/plainjs": "^6.1.0"
"@json2csv/plainjs": "^6.1.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": "6.1.0",
"version": "6.1.1",
"description": "Pure Javascript JSON to CSV converter.",
"keywords": [
"json",
Expand Down Expand Up @@ -44,7 +44,7 @@
"deprendencies:update-internal": "npm uninstall @json2csv/formatters && npm install @json2csv/formatters"
},
"dependencies": {
"@json2csv/formatters": "^6.1.0",
"@json2csv/formatters": "^6.1.1",
"@streamparser/json": "^0.0.10",
"lodash.get": "^4.4.2"
}
Expand Down
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": "6.1.0",
"version": "6.1.1",
"description": "Test helper to test the json2csv libraries",
"homepage": "http://juanjodiaz.github.io/json2csv",
"bugs": {
Expand Down
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": "6.1.0",
"version": "6.1.1",
"description": "Performance tests for json2csv",
"keywords": [
"json",
Expand Down
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": "6.1.0",
"version": "6.1.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",
Expand Down
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": "6.1.0",
"version": "6.1.1",
"description": "WHATWG Transform and Async interface to convert JSON into CSV.",
"keywords": [
"json",
Expand Down Expand Up @@ -44,6 +44,6 @@
"deprendencies:update-internal": "npm uninstall @json2csv/plainjs && npm install @json2csv/plainjs"
},
"dependencies": {
"@json2csv/plainjs": "^6.1.0"
"@json2csv/plainjs": "^6.1.1"
}
}

0 comments on commit b8f190e

Please sign in to comment.