diff --git a/CHANGELOG.md b/CHANGELOG.md index 0ca161a2..e3aa998a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,30 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [8.0.0](https://github.com/gregberge/svgr/compare/v7.0.0...v8.0.0) (2023-05-09) + + +### Bug Fixes + +* parseObject error causes website broken ([05f2946](https://github.com/gregberge/svgr/commit/05f2946d90b194eac17d51ca0562d13e9ed0c995)) + + +### Features + +* add snake_case filename option ([#857](https://github.com/gregberge/svgr/issues/857)) ([428b0c7](https://github.com/gregberge/svgr/commit/428b0c7f4c5205bb67ae3e9e7c7e819ec3fc03ba)) +* make index template more flexible ([#861](https://github.com/gregberge/svgr/issues/861)) ([003009c](https://github.com/gregberge/svgr/commit/003009c7b234cfe66686b629d3251edb8d46c759)) +* **types:** change `SVGProps` from import to import type ([#853](https://github.com/gregberge/svgr/issues/853)) ([095f021](https://github.com/gregberge/svgr/commit/095f0216288ccb5b96a75f154fe3aead074bfa99)) + + +### BREAKING CHANGES + +* index template now receives an array of objects containing both the created +component path (`path`) and the original SVG path (`originalPath`) + + + + + # [7.0.0](https://github.com/gregberge/svgr/compare/v6.5.1...v7.0.0) (2023-03-24) diff --git a/examples/mocha-esm/CHANGELOG.md b/examples/mocha-esm/CHANGELOG.md index 33abb9b3..1414c227 100644 --- a/examples/mocha-esm/CHANGELOG.md +++ b/examples/mocha-esm/CHANGELOG.md @@ -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. +# [8.0.0](https://github.com/gregberge/svgr/compare/v7.0.0...v8.0.0) (2023-05-09) + +**Note:** Version bump only for package @svgr/mocha-esm-example + + + + + # [7.0.0](https://github.com/gregberge/svgr/compare/v6.5.1...v7.0.0) (2023-03-24) **Note:** Version bump only for package @svgr/mocha-esm-example diff --git a/examples/mocha-esm/package.json b/examples/mocha-esm/package.json index a85d4baf..a302af75 100644 --- a/examples/mocha-esm/package.json +++ b/examples/mocha-esm/package.json @@ -8,5 +8,5 @@ "devDependencies": { "mocha": "^10.2.0" }, - "version": "7.0.0" + "version": "8.0.0" } diff --git a/examples/webpack/CHANGELOG.md b/examples/webpack/CHANGELOG.md index 4eb23828..9d573975 100644 --- a/examples/webpack/CHANGELOG.md +++ b/examples/webpack/CHANGELOG.md @@ -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. +# [8.0.0](https://github.com/gregberge/svgr/compare/v7.0.0...v8.0.0) (2023-05-09) + +**Note:** Version bump only for package @svgr/webpack-example + + + + + # [7.0.0](https://github.com/gregberge/svgr/compare/v6.5.1...v7.0.0) (2023-03-24) **Note:** Version bump only for package @svgr/webpack-example diff --git a/examples/webpack/package.json b/examples/webpack/package.json index ef2ff0e0..7bf9a905 100644 --- a/examples/webpack/package.json +++ b/examples/webpack/package.json @@ -5,12 +5,12 @@ "start": "webpack serve" }, "devDependencies": { - "@svgr/webpack": "^7.0.0", + "@svgr/webpack": "^8.0.0", "html-webpack-plugin": "^5.5.0", + "url-loader": "^4.1.1", "webpack": "^5.76.3", "webpack-cli": "^5.0.1", - "webpack-dev-server": "^4.13.1", - "url-loader": "^4.1.1" + "webpack-dev-server": "^4.13.1" }, - "version": "7.0.0" + "version": "8.0.0" } diff --git a/lerna.json b/lerna.json index d3648a4f..4605f995 100644 --- a/lerna.json +++ b/lerna.json @@ -1,6 +1,6 @@ { "lerna": "2.9.0", - "version": "7.0.0", + "version": "8.0.0", "npmClient": "pnpm", "useWorkspaces": true } diff --git a/packages/babel-plugin-add-jsx-attribute/CHANGELOG.md b/packages/babel-plugin-add-jsx-attribute/CHANGELOG.md index b9c60248..093cdafb 100644 --- a/packages/babel-plugin-add-jsx-attribute/CHANGELOG.md +++ b/packages/babel-plugin-add-jsx-attribute/CHANGELOG.md @@ -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. +# [8.0.0](https://github.com/gregberge/svgr/compare/v7.0.0...v8.0.0) (2023-05-09) + +**Note:** Version bump only for package @svgr/babel-plugin-add-jsx-attribute + + + + + # [7.0.0](https://github.com/gregberge/svgr/compare/v6.5.1...v7.0.0) (2023-03-24) **Note:** Version bump only for package @svgr/babel-plugin-add-jsx-attribute diff --git a/packages/babel-plugin-add-jsx-attribute/package.json b/packages/babel-plugin-add-jsx-attribute/package.json index 5e78cfdc..e23aa787 100644 --- a/packages/babel-plugin-add-jsx-attribute/package.json +++ b/packages/babel-plugin-add-jsx-attribute/package.json @@ -1,7 +1,7 @@ { "name": "@svgr/babel-plugin-add-jsx-attribute", "description": "Add JSX attribute", - "version": "7.0.0", + "version": "8.0.0", "main": "./dist/index.js", "types": "./dist/index.d.ts", "exports": { diff --git a/packages/babel-plugin-remove-jsx-attribute/CHANGELOG.md b/packages/babel-plugin-remove-jsx-attribute/CHANGELOG.md index 96a9d502..b5ec217e 100644 --- a/packages/babel-plugin-remove-jsx-attribute/CHANGELOG.md +++ b/packages/babel-plugin-remove-jsx-attribute/CHANGELOG.md @@ -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. +# [8.0.0](https://github.com/gregberge/svgr/compare/v7.0.0...v8.0.0) (2023-05-09) + +**Note:** Version bump only for package @svgr/babel-plugin-remove-jsx-attribute + + + + + # [7.0.0](https://github.com/gregberge/svgr/compare/v6.5.1...v7.0.0) (2023-03-24) **Note:** Version bump only for package @svgr/babel-plugin-remove-jsx-attribute diff --git a/packages/babel-plugin-remove-jsx-attribute/package.json b/packages/babel-plugin-remove-jsx-attribute/package.json index 4fb6916d..61c9f9bb 100644 --- a/packages/babel-plugin-remove-jsx-attribute/package.json +++ b/packages/babel-plugin-remove-jsx-attribute/package.json @@ -1,7 +1,7 @@ { "name": "@svgr/babel-plugin-remove-jsx-attribute", "description": "Remove JSX attribute", - "version": "7.0.0", + "version": "8.0.0", "main": "./dist/index.js", "types": "./dist/index.d.ts", "exports": { diff --git a/packages/babel-plugin-remove-jsx-empty-expression/CHANGELOG.md b/packages/babel-plugin-remove-jsx-empty-expression/CHANGELOG.md index 2ae134cc..a464b622 100644 --- a/packages/babel-plugin-remove-jsx-empty-expression/CHANGELOG.md +++ b/packages/babel-plugin-remove-jsx-empty-expression/CHANGELOG.md @@ -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. +# [8.0.0](https://github.com/gregberge/svgr/compare/v7.0.0...v8.0.0) (2023-05-09) + +**Note:** Version bump only for package @svgr/babel-plugin-remove-jsx-empty-expression + + + + + # [7.0.0](https://github.com/gregberge/svgr/compare/v6.5.1...v7.0.0) (2023-03-24) **Note:** Version bump only for package @svgr/babel-plugin-remove-jsx-empty-expression diff --git a/packages/babel-plugin-remove-jsx-empty-expression/package.json b/packages/babel-plugin-remove-jsx-empty-expression/package.json index 691872c2..9656f7e9 100644 --- a/packages/babel-plugin-remove-jsx-empty-expression/package.json +++ b/packages/babel-plugin-remove-jsx-empty-expression/package.json @@ -1,7 +1,7 @@ { "name": "@svgr/babel-plugin-remove-jsx-empty-expression", "description": "Remove JSX empty expression", - "version": "7.0.0", + "version": "8.0.0", "main": "./dist/index.js", "types": "./dist/index.d.ts", "exports": { diff --git a/packages/babel-plugin-replace-jsx-attribute-value/CHANGELOG.md b/packages/babel-plugin-replace-jsx-attribute-value/CHANGELOG.md index 0d95c5b2..645b7d09 100644 --- a/packages/babel-plugin-replace-jsx-attribute-value/CHANGELOG.md +++ b/packages/babel-plugin-replace-jsx-attribute-value/CHANGELOG.md @@ -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. +# [8.0.0](https://github.com/gregberge/svgr/compare/v7.0.0...v8.0.0) (2023-05-09) + +**Note:** Version bump only for package @svgr/babel-plugin-replace-jsx-attribute-value + + + + + # [7.0.0](https://github.com/gregberge/svgr/compare/v6.5.1...v7.0.0) (2023-03-24) **Note:** Version bump only for package @svgr/babel-plugin-replace-jsx-attribute-value diff --git a/packages/babel-plugin-replace-jsx-attribute-value/package.json b/packages/babel-plugin-replace-jsx-attribute-value/package.json index 8b2a4200..1e695717 100644 --- a/packages/babel-plugin-replace-jsx-attribute-value/package.json +++ b/packages/babel-plugin-replace-jsx-attribute-value/package.json @@ -1,7 +1,7 @@ { "name": "@svgr/babel-plugin-replace-jsx-attribute-value", "description": "Replace JSX attribute value", - "version": "7.0.0", + "version": "8.0.0", "main": "./dist/index.js", "types": "./dist/index.d.ts", "exports": { diff --git a/packages/babel-plugin-svg-dynamic-title/CHANGELOG.md b/packages/babel-plugin-svg-dynamic-title/CHANGELOG.md index 2ddbdd76..19a03a30 100644 --- a/packages/babel-plugin-svg-dynamic-title/CHANGELOG.md +++ b/packages/babel-plugin-svg-dynamic-title/CHANGELOG.md @@ -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. +# [8.0.0](https://github.com/gregberge/svgr/compare/v7.0.0...v8.0.0) (2023-05-09) + +**Note:** Version bump only for package @svgr/babel-plugin-svg-dynamic-title + + + + + # [7.0.0](https://github.com/gregberge/svgr/compare/v6.5.1...v7.0.0) (2023-03-24) **Note:** Version bump only for package @svgr/babel-plugin-svg-dynamic-title diff --git a/packages/babel-plugin-svg-dynamic-title/package.json b/packages/babel-plugin-svg-dynamic-title/package.json index 0261aa05..f0f97c79 100644 --- a/packages/babel-plugin-svg-dynamic-title/package.json +++ b/packages/babel-plugin-svg-dynamic-title/package.json @@ -1,7 +1,7 @@ { "name": "@svgr/babel-plugin-svg-dynamic-title", "description": "Transform SVG by adding a dynamic title element", - "version": "7.0.0", + "version": "8.0.0", "main": "./dist/index.js", "types": "./dist/index.d.ts", "exports": { diff --git a/packages/babel-plugin-svg-em-dimensions/CHANGELOG.md b/packages/babel-plugin-svg-em-dimensions/CHANGELOG.md index a6d2300b..11611a8a 100644 --- a/packages/babel-plugin-svg-em-dimensions/CHANGELOG.md +++ b/packages/babel-plugin-svg-em-dimensions/CHANGELOG.md @@ -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. +# [8.0.0](https://github.com/gregberge/svgr/compare/v7.0.0...v8.0.0) (2023-05-09) + +**Note:** Version bump only for package @svgr/babel-plugin-svg-em-dimensions + + + + + # [7.0.0](https://github.com/gregberge/svgr/compare/v6.5.1...v7.0.0) (2023-03-24) **Note:** Version bump only for package @svgr/babel-plugin-svg-em-dimensions diff --git a/packages/babel-plugin-svg-em-dimensions/package.json b/packages/babel-plugin-svg-em-dimensions/package.json index e1e44aeb..56bc7c97 100644 --- a/packages/babel-plugin-svg-em-dimensions/package.json +++ b/packages/babel-plugin-svg-em-dimensions/package.json @@ -1,7 +1,7 @@ { "name": "@svgr/babel-plugin-svg-em-dimensions", "description": "Transform SVG to use em-based dimensions", - "version": "7.0.0", + "version": "8.0.0", "main": "./dist/index.js", "types": "./dist/index.d.ts", "exports": { diff --git a/packages/babel-plugin-transform-react-native-svg/CHANGELOG.md b/packages/babel-plugin-transform-react-native-svg/CHANGELOG.md index 2b4f783b..f9f2621a 100644 --- a/packages/babel-plugin-transform-react-native-svg/CHANGELOG.md +++ b/packages/babel-plugin-transform-react-native-svg/CHANGELOG.md @@ -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. +# [8.0.0](https://github.com/gregberge/svgr/compare/v7.0.0...v8.0.0) (2023-05-09) + +**Note:** Version bump only for package @svgr/babel-plugin-transform-react-native-svg + + + + + # [7.0.0](https://github.com/gregberge/svgr/compare/v6.5.1...v7.0.0) (2023-03-24) **Note:** Version bump only for package @svgr/babel-plugin-transform-react-native-svg diff --git a/packages/babel-plugin-transform-react-native-svg/package.json b/packages/babel-plugin-transform-react-native-svg/package.json index 7a2264f4..1a50f097 100644 --- a/packages/babel-plugin-transform-react-native-svg/package.json +++ b/packages/babel-plugin-transform-react-native-svg/package.json @@ -1,7 +1,7 @@ { "name": "@svgr/babel-plugin-transform-react-native-svg", "description": "Transform DOM elements into react-native-svg components", - "version": "7.0.0", + "version": "8.0.0", "main": "./dist/index.js", "types": "./dist/index.d.ts", "exports": { diff --git a/packages/babel-plugin-transform-svg-component/CHANGELOG.md b/packages/babel-plugin-transform-svg-component/CHANGELOG.md index 4382742a..8e261843 100644 --- a/packages/babel-plugin-transform-svg-component/CHANGELOG.md +++ b/packages/babel-plugin-transform-svg-component/CHANGELOG.md @@ -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. +# [8.0.0](https://github.com/gregberge/svgr/compare/v7.0.0...v8.0.0) (2023-05-09) + + +### Features + +* **types:** change `SVGProps` from import to import type ([#853](https://github.com/gregberge/svgr/issues/853)) ([095f021](https://github.com/gregberge/svgr/commit/095f0216288ccb5b96a75f154fe3aead074bfa99)) + + + + + # [7.0.0](https://github.com/gregberge/svgr/compare/v6.5.1...v7.0.0) (2023-03-24) diff --git a/packages/babel-plugin-transform-svg-component/package.json b/packages/babel-plugin-transform-svg-component/package.json index 8ed902ae..b79b558d 100644 --- a/packages/babel-plugin-transform-svg-component/package.json +++ b/packages/babel-plugin-transform-svg-component/package.json @@ -1,7 +1,7 @@ { "name": "@svgr/babel-plugin-transform-svg-component", "description": "Transform SVG into component", - "version": "7.0.0", + "version": "8.0.0", "main": "./dist/index.js", "types": "./dist/index.d.ts", "exports": { diff --git a/packages/babel-preset/CHANGELOG.md b/packages/babel-preset/CHANGELOG.md index 689b1649..871bc79f 100644 --- a/packages/babel-preset/CHANGELOG.md +++ b/packages/babel-preset/CHANGELOG.md @@ -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. +# [8.0.0](https://github.com/gregberge/svgr/compare/v7.0.0...v8.0.0) (2023-05-09) + +**Note:** Version bump only for package @svgr/babel-preset + + + + + # [7.0.0](https://github.com/gregberge/svgr/compare/v6.5.1...v7.0.0) (2023-03-24) **Note:** Version bump only for package @svgr/babel-preset diff --git a/packages/babel-preset/package.json b/packages/babel-preset/package.json index 635e58ac..8c526210 100644 --- a/packages/babel-preset/package.json +++ b/packages/babel-preset/package.json @@ -1,7 +1,7 @@ { "name": "@svgr/babel-preset", "description": "SVGR preset that apply transformations from config", - "version": "7.0.0", + "version": "8.0.0", "main": "./dist/index.js", "types": "./dist/index.d.ts", "exports": { diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md index 7311bec4..93591ad9 100644 --- a/packages/cli/CHANGELOG.md +++ b/packages/cli/CHANGELOG.md @@ -3,6 +3,25 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [8.0.0](https://github.com/gregberge/svgr/compare/v7.0.0...v8.0.0) (2023-05-09) + + +### Features + +* add snake_case filename option ([#857](https://github.com/gregberge/svgr/issues/857)) ([428b0c7](https://github.com/gregberge/svgr/commit/428b0c7f4c5205bb67ae3e9e7c7e819ec3fc03ba)) +* make index template more flexible ([#861](https://github.com/gregberge/svgr/issues/861)) ([003009c](https://github.com/gregberge/svgr/commit/003009c7b234cfe66686b629d3251edb8d46c759)) +* **types:** change `SVGProps` from import to import type ([#853](https://github.com/gregberge/svgr/issues/853)) ([095f021](https://github.com/gregberge/svgr/commit/095f0216288ccb5b96a75f154fe3aead074bfa99)) + + +### BREAKING CHANGES + +* index template now receives an array of objects containing both the created +component path (`path`) and the original SVG path (`originalPath`) + + + + + # [7.0.0](https://github.com/gregberge/svgr/compare/v6.5.1...v7.0.0) (2023-03-24) diff --git a/packages/cli/package.json b/packages/cli/package.json index acdf3298..83c76b2c 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,7 +1,7 @@ { "name": "@svgr/cli", "description": "SVGR command line.", - "version": "7.0.0", + "version": "8.0.0", "repository": "https://github.com/gregberge/svgr/tree/main/packages/cli", "author": "Greg Bergé ", "publishConfig": { diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index 2f6080a7..3e677e4d 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -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. +# [8.0.0](https://github.com/gregberge/svgr/compare/v7.0.0...v8.0.0) (2023-05-09) + + +### Features + +* add snake_case filename option ([#857](https://github.com/gregberge/svgr/issues/857)) ([428b0c7](https://github.com/gregberge/svgr/commit/428b0c7f4c5205bb67ae3e9e7c7e819ec3fc03ba)) + + + + + # [7.0.0](https://github.com/gregberge/svgr/compare/v6.5.1...v7.0.0) (2023-03-24) diff --git a/packages/core/package.json b/packages/core/package.json index 37e1e07d..77e51964 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,7 +1,7 @@ { "name": "@svgr/core", "description": "Transform SVG into React Components.", - "version": "7.0.0", + "version": "8.0.0", "main": "./dist/index.js", "types": "./dist/index.d.ts", "exports": { diff --git a/packages/hast-util-to-babel-ast/CHANGELOG.md b/packages/hast-util-to-babel-ast/CHANGELOG.md index ebc693e7..f4bcddba 100644 --- a/packages/hast-util-to-babel-ast/CHANGELOG.md +++ b/packages/hast-util-to-babel-ast/CHANGELOG.md @@ -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. +# [8.0.0](https://github.com/gregberge/svgr/compare/v7.0.0...v8.0.0) (2023-05-09) + +**Note:** Version bump only for package @svgr/hast-util-to-babel-ast + + + + + # [7.0.0](https://github.com/gregberge/svgr/compare/v6.5.1...v7.0.0) (2023-03-24) **Note:** Version bump only for package @svgr/hast-util-to-babel-ast diff --git a/packages/hast-util-to-babel-ast/package.json b/packages/hast-util-to-babel-ast/package.json index 13646db6..eb749646 100644 --- a/packages/hast-util-to-babel-ast/package.json +++ b/packages/hast-util-to-babel-ast/package.json @@ -1,7 +1,7 @@ { "name": "@svgr/hast-util-to-babel-ast", "description": "Transform HAST to Babel AST (JSX)", - "version": "7.0.0", + "version": "8.0.0", "main": "./dist/index.js", "types": "./dist/index.d.ts", "exports": { diff --git a/packages/plugin-jsx/CHANGELOG.md b/packages/plugin-jsx/CHANGELOG.md index de85a424..75258d6d 100644 --- a/packages/plugin-jsx/CHANGELOG.md +++ b/packages/plugin-jsx/CHANGELOG.md @@ -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. +# [8.0.0](https://github.com/gregberge/svgr/compare/v7.0.0...v8.0.0) (2023-05-09) + +**Note:** Version bump only for package @svgr/plugin-jsx + + + + + # [7.0.0](https://github.com/gregberge/svgr/compare/v6.5.1...v7.0.0) (2023-03-24) diff --git a/packages/plugin-jsx/package.json b/packages/plugin-jsx/package.json index 1e586fba..c4d8939f 100644 --- a/packages/plugin-jsx/package.json +++ b/packages/plugin-jsx/package.json @@ -1,7 +1,7 @@ { "name": "@svgr/plugin-jsx", "description": "Transform SVG into JSX", - "version": "7.0.0", + "version": "8.0.0", "main": "./dist/index.js", "types": "./dist/index.d.ts", "exports": { diff --git a/packages/plugin-prettier/CHANGELOG.md b/packages/plugin-prettier/CHANGELOG.md index 543650c6..954bba32 100644 --- a/packages/plugin-prettier/CHANGELOG.md +++ b/packages/plugin-prettier/CHANGELOG.md @@ -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. +# [8.0.0](https://github.com/gregberge/svgr/compare/v7.0.0...v8.0.0) (2023-05-09) + +**Note:** Version bump only for package @svgr/plugin-prettier + + + + + # [7.0.0](https://github.com/gregberge/svgr/compare/v6.5.1...v7.0.0) (2023-03-24) **Note:** Version bump only for package @svgr/plugin-prettier diff --git a/packages/plugin-prettier/package.json b/packages/plugin-prettier/package.json index 4ee57fdc..866e6e7a 100644 --- a/packages/plugin-prettier/package.json +++ b/packages/plugin-prettier/package.json @@ -1,7 +1,7 @@ { "name": "@svgr/plugin-prettier", "description": "Format code using Prettier", - "version": "7.0.0", + "version": "8.0.0", "main": "./dist/index.js", "types": "./dist/index.d.ts", "exports": { diff --git a/packages/plugin-svgo/CHANGELOG.md b/packages/plugin-svgo/CHANGELOG.md index 203d8477..8d68b9a7 100644 --- a/packages/plugin-svgo/CHANGELOG.md +++ b/packages/plugin-svgo/CHANGELOG.md @@ -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. +# [8.0.0](https://github.com/gregberge/svgr/compare/v7.0.0...v8.0.0) (2023-05-09) + +**Note:** Version bump only for package @svgr/plugin-svgo + + + + + # [7.0.0](https://github.com/gregberge/svgr/compare/v6.5.1...v7.0.0) (2023-03-24) diff --git a/packages/plugin-svgo/package.json b/packages/plugin-svgo/package.json index abd98215..48992f35 100644 --- a/packages/plugin-svgo/package.json +++ b/packages/plugin-svgo/package.json @@ -1,7 +1,7 @@ { "name": "@svgr/plugin-svgo", "description": "Optimize SVG", - "version": "7.0.0", + "version": "8.0.0", "main": "./dist/index.js", "types": "./dist/index.d.ts", "exports": { diff --git a/packages/rollup/CHANGELOG.md b/packages/rollup/CHANGELOG.md index 32b73376..3cdfe87f 100644 --- a/packages/rollup/CHANGELOG.md +++ b/packages/rollup/CHANGELOG.md @@ -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. +# [8.0.0](https://github.com/gregberge/svgr/compare/v7.0.0...v8.0.0) (2023-05-09) + +**Note:** Version bump only for package @svgr/rollup + + + + + # [7.0.0](https://github.com/gregberge/svgr/compare/v6.5.1...v7.0.0) (2023-03-24) diff --git a/packages/rollup/package.json b/packages/rollup/package.json index 2db0e87d..858cbe66 100644 --- a/packages/rollup/package.json +++ b/packages/rollup/package.json @@ -1,7 +1,7 @@ { "name": "@svgr/rollup", "description": "SVGR Rollup plugin.", - "version": "7.0.0", + "version": "8.0.0", "main": "./dist/index.js", "types": "./dist/index.d.ts", "exports": { diff --git a/packages/webpack/CHANGELOG.md b/packages/webpack/CHANGELOG.md index fcaa0823..c6911db1 100644 --- a/packages/webpack/CHANGELOG.md +++ b/packages/webpack/CHANGELOG.md @@ -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. +# [8.0.0](https://github.com/gregberge/svgr/compare/v7.0.0...v8.0.0) (2023-05-09) + +**Note:** Version bump only for package @svgr/webpack + + + + + # [7.0.0](https://github.com/gregberge/svgr/compare/v6.5.1...v7.0.0) (2023-03-24) diff --git a/packages/webpack/package.json b/packages/webpack/package.json index de1a170a..1d4b1b00 100644 --- a/packages/webpack/package.json +++ b/packages/webpack/package.json @@ -1,7 +1,7 @@ { "name": "@svgr/webpack", "description": "SVGR webpack loader.", - "version": "7.0.0", + "version": "8.0.0", "main": "./dist/index.js", "types": "./dist/index.d.ts", "exports": { diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 0f72d956..2c831078 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -92,7 +92,7 @@ importers: examples/webpack: devDependencies: '@svgr/webpack': - specifier: ^7.0.0 + specifier: ^8.0.0 version: link:../../packages/webpack html-webpack-plugin: specifier: ^5.5.0