Skip to content

Commit

Permalink
v5.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
gregberge committed Jan 20, 2020
1 parent c9d2dfc commit 1700dba
Show file tree
Hide file tree
Showing 12 changed files with 74 additions and 10 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Expand Up @@ -3,6 +3,23 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [5.1.0](https://github.com/smooth-code/svgr/compare/v5.0.1...v5.1.0) (2020-01-20)


### Bug Fixes

* fix merging svgo plugins in config ([#384](https://github.com/smooth-code/svgr/issues/384)) ([c9d2dfc](https://github.com/smooth-code/svgr/commit/c9d2dfcb8d4da55eb21a13507c87d9e549a86e7e))


### Features

* add Svg prefix to exports that starts with a number ([#383](https://github.com/smooth-code/svgr/issues/383)) ([fd120d1](https://github.com/smooth-code/svgr/commit/fd120d11c81395353f300da487295b769f6b9501)), closes [#379](https://github.com/smooth-code/svgr/issues/379)
* allow to provide custom index.js template ([#378](https://github.com/smooth-code/svgr/issues/378)) ([f734dda](https://github.com/smooth-code/svgr/commit/f734ddac8e639ad213a3ce09689e46226fd5c1e0))





## [5.0.1](https://github.com/smooth-code/svgr/compare/v5.0.0...v5.0.1) (2019-12-29)


Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Expand Up @@ -3,7 +3,7 @@
"packages": [
"packages/*"
],
"version": "5.0.1",
"version": "5.1.0",
"npmClient": "yarn",
"useWorkspaces": true
}
12 changes: 12 additions & 0 deletions packages/cli/CHANGELOG.md
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.

# [5.1.0](https://github.com/gregberge/svgr/tree/master/packages/cli/compare/v5.0.1...v5.1.0) (2020-01-20)


### Features

* add Svg prefix to exports that starts with a number ([#383](https://github.com/gregberge/svgr/tree/master/packages/cli/issues/383)) ([fd120d1](https://github.com/gregberge/svgr/tree/master/packages/cli/commit/fd120d11c81395353f300da487295b769f6b9501)), closes [#379](https://github.com/gregberge/svgr/tree/master/packages/cli/issues/379)
* allow to provide custom index.js template ([#378](https://github.com/gregberge/svgr/tree/master/packages/cli/issues/378)) ([f734dda](https://github.com/gregberge/svgr/tree/master/packages/cli/commit/f734ddac8e639ad213a3ce09689e46226fd5c1e0))





## [5.0.1](https://github.com/gregberge/svgr/tree/master/packages/cli/compare/v5.0.0...v5.0.1) (2019-12-29)


Expand Down
4 changes: 2 additions & 2 deletions packages/cli/package.json
@@ -1,7 +1,7 @@
{
"name": "@svgr/cli",
"description": "SVGR command line.",
"version": "5.0.1",
"version": "5.1.0",
"repository": "https://github.com/gregberge/svgr/tree/master/packages/cli",
"author": "Greg Bergé <berge.greg@gmail.com>",
"publishConfig": {
Expand Down Expand Up @@ -34,7 +34,7 @@
"@svgr/core": "^5.0.1",
"@svgr/plugin-jsx": "^5.0.1",
"@svgr/plugin-prettier": "^5.0.1",
"@svgr/plugin-svgo": "^5.0.1",
"@svgr/plugin-svgo": "^5.1.0",
"camelcase": "^5.3.1",
"chalk": "^3.0.0",
"commander": "^4.0.1",
Expand Down
8 changes: 8 additions & 0 deletions packages/parcel-plugin-svgr/CHANGELOG.md
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.

# [5.1.0](https://github.com/gregberge/svgr/tree/master/packages/parcel-plugin-svgr/compare/v5.0.1...v5.1.0) (2020-01-20)

**Note:** Version bump only for package @svgr/parcel-plugin-svgr





## [5.0.1](https://github.com/gregberge/svgr/tree/master/packages/parcel-plugin-svgr/compare/v5.0.0...v5.0.1) (2019-12-29)


Expand Down
4 changes: 2 additions & 2 deletions packages/parcel-plugin-svgr/package.json
@@ -1,7 +1,7 @@
{
"name": "@svgr/parcel-plugin-svgr",
"description": "SVGR Parcel plugin.",
"version": "5.0.1",
"version": "5.1.0",
"main": "lib/index.js",
"repository": "https://github.com/gregberge/svgr/tree/master/packages/parcel-plugin-svgr",
"author": "Mario Pabon <me@mariopabon.com>",
Expand Down Expand Up @@ -39,7 +39,7 @@
"@babel/preset-react": "^7.7.4",
"@svgr/core": "^5.0.1",
"@svgr/plugin-jsx": "^5.0.1",
"@svgr/plugin-svgo": "^5.0.1"
"@svgr/plugin-svgo": "^5.1.0"
},
"devDependencies": {
"parcel-bundler": "^1.10.0"
Expand Down
11 changes: 11 additions & 0 deletions packages/plugin-svgo/CHANGELOG.md
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.

# [5.1.0](https://github.com/gregberge/svgr/tree/master/packages/plugin-svgo/compare/v5.0.1...v5.1.0) (2020-01-20)


### Bug Fixes

* fix merging svgo plugins in config ([#384](https://github.com/gregberge/svgr/tree/master/packages/plugin-svgo/issues/384)) ([c9d2dfc](https://github.com/gregberge/svgr/tree/master/packages/plugin-svgo/commit/c9d2dfcb8d4da55eb21a13507c87d9e549a86e7e))





## [5.0.1](https://github.com/gregberge/svgr/tree/master/packages/plugin-svgo/compare/v5.0.0...v5.0.1) (2019-12-29)


Expand Down
2 changes: 1 addition & 1 deletion packages/plugin-svgo/package.json
@@ -1,7 +1,7 @@
{
"name": "@svgr/plugin-svgo",
"description": "Optimize SVG",
"version": "5.0.1",
"version": "5.1.0",
"main": "lib/index.js",
"repository": "https://github.com/gregberge/svgr/tree/master/packages/plugin-svgo",
"author": "Greg Bergé <berge.greg@gmail.com>",
Expand Down
8 changes: 8 additions & 0 deletions packages/rollup/CHANGELOG.md
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.

# [5.1.0](https://github.com/gregberge/svgr/tree/master/packages/rollup/compare/v5.0.1...v5.1.0) (2020-01-20)

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





## [5.0.1](https://github.com/gregberge/svgr/tree/master/packages/rollup/compare/v5.0.0...v5.0.1) (2019-12-29)


Expand Down
4 changes: 2 additions & 2 deletions packages/rollup/package.json
@@ -1,7 +1,7 @@
{
"name": "@svgr/rollup",
"description": "SVGR Rollup plugin.",
"version": "5.0.1",
"version": "5.1.0",
"main": "lib/index.js",
"repository": "https://github.com/gregberge/svgr/tree/master/packages/rollup",
"author": "Greg Bergé <berge.greg@gmail.com>",
Expand Down Expand Up @@ -36,7 +36,7 @@
"@babel/preset-react": "^7.7.4",
"@svgr/core": "^5.0.1",
"@svgr/plugin-jsx": "^5.0.1",
"@svgr/plugin-svgo": "^5.0.1",
"@svgr/plugin-svgo": "^5.1.0",
"rollup-pluginutils": "^2.8.2"
},
"devDependencies": {
Expand Down
8 changes: 8 additions & 0 deletions packages/webpack/CHANGELOG.md
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.

# [5.1.0](https://github.com/gregberge/svgr/tree/master/packages/webpack/compare/v5.0.1...v5.1.0) (2020-01-20)

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





## [5.0.1](https://github.com/gregberge/svgr/tree/master/packages/webpack/compare/v5.0.0...v5.0.1) (2019-12-29)


Expand Down
4 changes: 2 additions & 2 deletions packages/webpack/package.json
@@ -1,7 +1,7 @@
{
"name": "@svgr/webpack",
"description": "SVGR webpack loader.",
"version": "5.0.1",
"version": "5.1.0",
"main": "lib/index.js",
"repository": "https://github.com/gregberge/svgr/tree/master/packages/webpack",
"author": "Greg Bergé <berge.greg@gmail.com>",
Expand Down Expand Up @@ -36,7 +36,7 @@
"@babel/preset-react": "^7.0.0",
"@svgr/core": "^5.0.1",
"@svgr/plugin-jsx": "^5.0.1",
"@svgr/plugin-svgo": "^5.0.1",
"@svgr/plugin-svgo": "^5.1.0",
"loader-utils": "^1.2.3"
},
"devDependencies": {
Expand Down

0 comments on commit 1700dba

Please sign in to comment.