Skip to content

Commit

Permalink
v6.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
gregberge committed Dec 12, 2021
1 parent 45a76ed commit 3991389
Show file tree
Hide file tree
Showing 16 changed files with 99 additions and 19 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,18 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [6.1.2](https://github.com/gregberge/svgr/compare/v6.1.1...v6.1.2) (2021-12-12)


### Bug Fixes

* **rollup:** missing dep & missing map return ([#652](https://github.com/gregberge/svgr/issues/652)) ([12627fc](https://github.com/gregberge/svgr/commit/12627fcd91a425361e1fbe825a6668ce9a8b4f3b))
* specify valid peer deps ([45a76ed](https://github.com/gregberge/svgr/commit/45a76ed5f7d433e549c8513c0fdab08eb6c7bc2c))





## [6.1.1](https://github.com/gregberge/svgr/compare/v6.1.0...v6.1.1) (2021-12-04)


Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
"packages": [
"packages/*"
],
"version": "6.1.1",
"version": "6.1.2",
"useWorkspaces": true
}
8 changes: 8 additions & 0 deletions packages/cli/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [6.1.2](https://github.com/gregberge/svgr/compare/v6.1.1...v6.1.2) (2021-12-12)

**Note:** Version bump only for package @svgr/cli





## [6.1.1](https://github.com/gregberge/svgr/compare/v6.1.0...v6.1.1) (2021-12-04)

**Note:** Version bump only for package @svgr/cli
Expand Down
10 changes: 5 additions & 5 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@svgr/cli",
"description": "SVGR command line.",
"version": "6.1.1",
"version": "6.1.2",
"repository": "https://github.com/gregberge/svgr/tree/master/packages/cli",
"author": "Greg Bergé <[email protected]>",
"publishConfig": {
Expand Down Expand Up @@ -31,10 +31,10 @@
"prepublishOnly": "npm run reset && npm run build"
},
"dependencies": {
"@svgr/core": "^6.1.1",
"@svgr/plugin-jsx": "^6.1.0",
"@svgr/plugin-prettier": "^6.0.0",
"@svgr/plugin-svgo": "^6.1.0",
"@svgr/core": "^6.1.2",
"@svgr/plugin-jsx": "^6.1.2",
"@svgr/plugin-prettier": "^6.1.2",
"@svgr/plugin-svgo": "^6.1.2",
"camelcase": "^6.2.0",
"chalk": "^4.1.2",
"commander": "^8.2.0",
Expand Down
8 changes: 8 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [6.1.2](https://github.com/gregberge/svgr/compare/v6.1.1...v6.1.2) (2021-12-12)

**Note:** Version bump only for package @svgr/core





## [6.1.1](https://github.com/gregberge/svgr/compare/v6.1.0...v6.1.1) (2021-12-04)


Expand Down
4 changes: 2 additions & 2 deletions packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@svgr/core",
"description": "Transform SVG into React Components.",
"version": "6.1.1",
"version": "6.1.2",
"main": "./dist/index.js",
"exports": "./dist/index.js",
"typings": "./dist/index.d.ts",
Expand Down Expand Up @@ -33,7 +33,7 @@
"prepublishOnly": "npm run reset && npm run build"
},
"dependencies": {
"@svgr/plugin-jsx": "^6.1.0",
"@svgr/plugin-jsx": "^6.1.2",
"camelcase": "^6.2.0",
"cosmiconfig": "^7.0.1"
},
Expand Down
11 changes: 11 additions & 0 deletions packages/plugin-jsx/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [6.1.2](https://github.com/gregberge/svgr/compare/v6.1.1...v6.1.2) (2021-12-12)


### Bug Fixes

* specify valid peer deps ([45a76ed](https://github.com/gregberge/svgr/commit/45a76ed5f7d433e549c8513c0fdab08eb6c7bc2c))





# [6.1.0](https://github.com/gregberge/svgr/compare/v6.0.0...v6.1.0) (2021-12-01)

**Note:** Version bump only for package @svgr/plugin-jsx
Expand Down
2 changes: 1 addition & 1 deletion packages/plugin-jsx/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@svgr/plugin-jsx",
"description": "Transform SVG into JSX",
"version": "6.1.0",
"version": "6.1.2",
"main": "./dist/index.js",
"exports": "./dist/index.js",
"typings": "./dist/index.d.ts",
Expand Down
11 changes: 11 additions & 0 deletions packages/plugin-prettier/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [6.1.2](https://github.com/gregberge/svgr/compare/v6.1.1...v6.1.2) (2021-12-12)


### Bug Fixes

* specify valid peer deps ([45a76ed](https://github.com/gregberge/svgr/commit/45a76ed5f7d433e549c8513c0fdab08eb6c7bc2c))





# [5.5.0](https://github.com/gregberge/svgr/tree/master/packages/plugin-prettier/compare/v5.4.0...v5.5.0) (2020-11-15)


Expand Down
2 changes: 1 addition & 1 deletion packages/plugin-prettier/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@svgr/plugin-prettier",
"description": "Format code using Prettier",
"version": "6.0.0",
"version": "6.1.2",
"main": "./dist/index.js",
"exports": "./dist/index.js",
"typings": "./dist/index.d.ts",
Expand Down
11 changes: 11 additions & 0 deletions packages/plugin-svgo/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [6.1.2](https://github.com/gregberge/svgr/compare/v6.1.1...v6.1.2) (2021-12-12)


### Bug Fixes

* specify valid peer deps ([45a76ed](https://github.com/gregberge/svgr/commit/45a76ed5f7d433e549c8513c0fdab08eb6c7bc2c))





# [6.1.0](https://github.com/gregberge/svgr/compare/v6.0.0...v6.1.0) (2021-12-01)


Expand Down
2 changes: 1 addition & 1 deletion packages/plugin-svgo/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@svgr/plugin-svgo",
"description": "Optimize SVG",
"version": "6.1.0",
"version": "6.1.2",
"main": "./dist/index.js",
"exports": "./dist/index.js",
"typings": "./dist/index.d.ts",
Expand Down
11 changes: 11 additions & 0 deletions packages/rollup/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [6.1.2](https://github.com/gregberge/svgr/compare/v6.1.1...v6.1.2) (2021-12-12)


### Bug Fixes

* **rollup:** missing dep & missing map return ([#652](https://github.com/gregberge/svgr/issues/652)) ([12627fc](https://github.com/gregberge/svgr/commit/12627fcd91a425361e1fbe825a6668ce9a8b4f3b))





## [6.1.1](https://github.com/gregberge/svgr/compare/v6.1.0...v6.1.1) (2021-12-04)

**Note:** Version bump only for package @svgr/rollup
Expand Down
8 changes: 4 additions & 4 deletions packages/rollup/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@svgr/rollup",
"description": "SVGR Rollup plugin.",
"version": "6.1.1",
"version": "6.1.2",
"main": "./dist/index.js",
"exports": "./dist/index.js",
"typings": "./dist/index.d.ts",
Expand Down Expand Up @@ -37,9 +37,9 @@
"@babel/preset-env": "^7.15.6",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.16.0",
"@svgr/core": "^6.1.1",
"@svgr/plugin-jsx": "^6.1.0",
"@svgr/plugin-svgo": "^6.1.0",
"@svgr/core": "^6.1.2",
"@svgr/plugin-jsx": "^6.1.2",
"@svgr/plugin-svgo": "^6.1.2",
"rollup-pluginutils": "^2.8.2"
},
"devDependencies": {
Expand Down
8 changes: 8 additions & 0 deletions packages/webpack/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [6.1.2](https://github.com/gregberge/svgr/compare/v6.1.1...v6.1.2) (2021-12-12)

**Note:** Version bump only for package @svgr/webpack





## [6.1.1](https://github.com/gregberge/svgr/compare/v6.1.0...v6.1.1) (2021-12-04)


Expand Down
8 changes: 4 additions & 4 deletions packages/webpack/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@svgr/webpack",
"description": "SVGR webpack loader.",
"version": "6.1.1",
"version": "6.1.2",
"main": "./dist/index.js",
"exports": "./dist/index.js",
"typings": "./dist/index.d.ts",
Expand Down Expand Up @@ -37,9 +37,9 @@
"@babel/preset-env": "^7.15.6",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.15.0",
"@svgr/core": "^6.1.1",
"@svgr/plugin-jsx": "^6.1.0",
"@svgr/plugin-svgo": "^6.1.0"
"@svgr/core": "^6.1.2",
"@svgr/plugin-jsx": "^6.1.2",
"@svgr/plugin-svgo": "^6.1.2"
},
"devDependencies": {
"babel-loader": "^8.2.2",
Expand Down

1 comment on commit 3991389

@vercel
Copy link

@vercel vercel bot commented on 3991389 Dec 12, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.