Skip to content

Commit 8fb24b6

Browse files
committed
v2.1.0
1 parent 4922f7a commit 8fb24b6

10 files changed

Lines changed: 72 additions & 11 deletions

File tree

CHANGELOG.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,19 @@
11
# Change Log
22

3-
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.
3+
All notable changes to this project will be documented in this file.
4+
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5+
6+
<a name="2.1.0"></a>
7+
# [2.1.0](https://github.com/smooth-code/svgr/compare/v2.0.0...v2.1.0) (2018-07-08)
8+
9+
10+
### Features
11+
12+
* add .editorconfig support ([#129](https://github.com/smooth-code/svgr/issues/129)) ([968fd82](https://github.com/smooth-code/svgr/commit/968fd82))
13+
* **cli:** support custom filename cases ([#136](https://github.com/smooth-code/svgr/issues/136)) ([4922f7a](https://github.com/smooth-code/svgr/commit/4922f7a)), closes [#118](https://github.com/smooth-code/svgr/issues/118)
14+
15+
16+
417

518
<a name="2.0.0"></a>
619
# [2.0.0](https://github.com/smooth-code/svgr/compare/v1.10.0...v2.0.0) (2018-06-12)

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"packages": [
44
"packages/*"
55
],
6-
"version": "2.0.0",
6+
"version": "2.1.0",
77
"npmClient": "yarn",
88
"useWorkspaces": true
99
}

packages/cli/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# Change Log
2+
3+
All notable changes to this project will be documented in this file.
4+
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5+
6+
<a name="2.1.0"></a>
7+
# [2.1.0](https://github.com/smooth-code/svgr/compare/v2.0.0...v2.1.0) (2018-07-08)
8+
9+
10+
### Features
11+
12+
* **cli:** support custom filename cases ([#136](https://github.com/smooth-code/svgr/issues/136)) ([4922f7a](https://github.com/smooth-code/svgr/commit/4922f7a)), closes [#118](https://github.com/smooth-code/svgr/issues/118)

packages/cli/package.json

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@svgr/cli",
33
"description": "SVGR command line.",
4-
"version": "2.0.0",
4+
"version": "2.1.0",
55
"repository": "git@github.com:smooth-code/svgr.git",
66
"author": "Greg Bergé <berge.greg@gmail.com>",
77
"keywords": [
@@ -23,13 +23,12 @@
2323
"prepublishOnly": "yarn run build"
2424
},
2525
"dependencies": {
26-
"@svgr/core": "^2.0.0",
26+
"@svgr/core": "^2.1.0",
2727
"chalk": "^2.4.1",
2828
"commander": "^2.16.0",
2929
"glob": "^7.1.2",
3030
"lodash": "^4.17.10",
3131
"output-file-sync": "^2.0.1",
3232
"recursive-readdir": "^2.2.2"
33-
},
34-
"devDependencies": {}
33+
}
3534
}

packages/core/CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# Change Log
2+
3+
All notable changes to this project will be documented in this file.
4+
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5+
6+
<a name="2.1.0"></a>
7+
# [2.1.0](https://github.com/smooth-code/svgr/compare/v2.0.0...v2.1.0) (2018-07-08)
8+
9+
10+
### Features
11+
12+
* add .editorconfig support ([#129](https://github.com/smooth-code/svgr/issues/129)) ([968fd82](https://github.com/smooth-code/svgr/commit/968fd82))
13+
* **cli:** support custom filename cases ([#136](https://github.com/smooth-code/svgr/issues/136)) ([4922f7a](https://github.com/smooth-code/svgr/commit/4922f7a)), closes [#118](https://github.com/smooth-code/svgr/issues/118)

packages/core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@svgr/core",
33
"description": "Transform SVG into React Components.",
4-
"version": "2.0.0",
4+
"version": "2.1.0",
55
"main": "lib/index.js",
66
"repository": "git@github.com:smooth-code/svgr.git",
77
"author": "Greg Bergé <berge.greg@gmail.com>",

packages/rollup/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# Change Log
2+
3+
All notable changes to this project will be documented in this file.
4+
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5+
6+
<a name="2.1.0"></a>
7+
# [2.1.0](https://github.com/smooth-code/svgr/compare/v2.0.0...v2.1.0) (2018-07-08)
8+
9+
10+
### Features
11+
12+
* **cli:** support custom filename cases ([#136](https://github.com/smooth-code/svgr/issues/136)) ([4922f7a](https://github.com/smooth-code/svgr/commit/4922f7a)), closes [#118](https://github.com/smooth-code/svgr/issues/118)

packages/rollup/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@svgr/rollup",
33
"description": "SVGR Rollup plugin.",
4-
"version": "2.0.0",
4+
"version": "2.1.0",
55
"main": "lib/index.js",
66
"repository": "git@github.com:smooth-code/svgr.git",
77
"author": "Greg Bergé <berge.greg@gmail.com>",
@@ -27,7 +27,7 @@
2727
"@babel/plugin-transform-react-constant-elements": "^7.0.0-beta.52",
2828
"@babel/preset-env": "^7.0.0-beta.52",
2929
"@babel/preset-react": "^7.0.0-beta.52",
30-
"@svgr/core": "^2.0.0",
30+
"@svgr/core": "^2.1.0",
3131
"rollup-pluginutils": "^2.3.0"
3232
},
3333
"devDependencies": {

packages/webpack/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# Change Log
2+
3+
All notable changes to this project will be documented in this file.
4+
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5+
6+
<a name="2.1.0"></a>
7+
# [2.1.0](https://github.com/smooth-code/svgr/compare/v2.0.0...v2.1.0) (2018-07-08)
8+
9+
10+
11+
12+
**Note:** Version bump only for package @svgr/webpack

packages/webpack/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@svgr/webpack",
33
"description": "SVGR webpack loader.",
4-
"version": "2.0.0",
4+
"version": "2.1.0",
55
"main": "lib/index.js",
66
"repository": "git@github.com:smooth-code/svgr.git",
77
"author": "Greg Bergé <berge.greg@gmail.com>",
@@ -27,7 +27,7 @@
2727
"@babel/plugin-transform-react-constant-elements": "^7.0.0-beta.52",
2828
"@babel/preset-env": "^7.0.0-beta.52",
2929
"@babel/preset-react": "^7.0.0-beta.52",
30-
"@svgr/core": "^2.0.0",
30+
"@svgr/core": "^2.1.0",
3131
"loader-utils": "^1.1.0"
3232
},
3333
"devDependencies": {

0 commit comments

Comments
 (0)