From 2b691b3662b7c3a5dd3e78cd33238bfee7ef0663 Mon Sep 17 00:00:00 2001 From: Anthony Fu Date: Mon, 15 Mar 2021 01:53:48 +0800 Subject: [PATCH] v0.6.0 --- CHANGELOG.md | 11 +++++++++++ lerna.json | 2 +- packages/all/CHANGELOG.md | 8 ++++++++ packages/all/package.json | 6 +++--- packages/basic/CHANGELOG.md | 11 +++++++++++ packages/basic/package.json | 2 +- packages/react/CHANGELOG.md | 11 +++++++++++ packages/react/package.json | 4 ++-- packages/typescript/CHANGELOG.md | 11 +++++++++++ packages/typescript/package.json | 4 ++-- packages/vue/CHANGELOG.md | 11 +++++++++++ packages/vue/package.json | 4 ++-- 12 files changed, 74 insertions(+), 11 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c1a7dad..5cfc067 100644 --- a/CHANGELOG.md +++ b/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. +# [0.6.0](https://github.com/antfu/eslint-config/compare/v0.5.1...v0.6.0) (2021-03-14) + + +### Features + +* overhaul ([d11174c](https://github.com/antfu/eslint-config/commit/d11174c6ddfa6fad5c3f47564985a65f46f83bff)) + + + + + ## [0.5.1](https://github.com/antfu/eslint-config/compare/v0.5.0...v0.5.1) (2021-03-13) **Note:** Version bump only for package @antfu/eslint-config-monorepo diff --git a/lerna.json b/lerna.json index f058afa..bdad1d5 100644 --- a/lerna.json +++ b/lerna.json @@ -2,5 +2,5 @@ "packages": [ "packages/*" ], - "version": "0.5.1" + "version": "0.6.0" } diff --git a/packages/all/CHANGELOG.md b/packages/all/CHANGELOG.md index 8809497..3d95eae 100644 --- a/packages/all/CHANGELOG.md +++ b/packages/all/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. +# [0.6.0](https://github.com/antfu/eslint-config/compare/v0.5.1...v0.6.0) (2021-03-14) + +**Note:** Version bump only for package @antfu/eslint-config + + + + + ## [0.5.1](https://github.com/antfu/eslint-config/compare/v0.5.0...v0.5.1) (2021-03-13) **Note:** Version bump only for package @antfu/eslint-config diff --git a/packages/all/package.json b/packages/all/package.json index 0060e65..791d15e 100644 --- a/packages/all/package.json +++ b/packages/all/package.json @@ -1,6 +1,6 @@ { "name": "@antfu/eslint-config", - "version": "0.5.1", + "version": "0.6.0", "description": "", "main": "index.js", "keywords": [], @@ -16,8 +16,8 @@ "access": "public" }, "dependencies": { - "@antfu/eslint-config-react": "^0.5.1", - "@antfu/eslint-config-vue": "^0.5.1" + "@antfu/eslint-config-react": "^0.6.0", + "@antfu/eslint-config-vue": "^0.6.0" }, "devDependencies": { "eslint": "^7.22.0" diff --git a/packages/basic/CHANGELOG.md b/packages/basic/CHANGELOG.md index 85a8b93..945f897 100644 --- a/packages/basic/CHANGELOG.md +++ b/packages/basic/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. +# [0.6.0](https://github.com/antfu/eslint-config/compare/v0.5.1...v0.6.0) (2021-03-14) + + +### Features + +* overhaul ([d11174c](https://github.com/antfu/eslint-config/commit/d11174c6ddfa6fad5c3f47564985a65f46f83bff)) + + + + + ## [0.5.1](https://github.com/antfu/eslint-config/compare/v0.5.0...v0.5.1) (2021-03-13) **Note:** Version bump only for package @antfu/eslint-config-basic diff --git a/packages/basic/package.json b/packages/basic/package.json index 914220f..0492af0 100644 --- a/packages/basic/package.json +++ b/packages/basic/package.json @@ -1,6 +1,6 @@ { "name": "@antfu/eslint-config-basic", - "version": "0.5.1", + "version": "0.6.0", "description": "", "main": "index.js", "keywords": [], diff --git a/packages/react/CHANGELOG.md b/packages/react/CHANGELOG.md index f69c6df..9a04ec3 100644 --- a/packages/react/CHANGELOG.md +++ b/packages/react/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. +# [0.6.0](https://github.com/antfu/eslint-config/compare/v0.5.1...v0.6.0) (2021-03-14) + + +### Features + +* overhaul ([d11174c](https://github.com/antfu/eslint-config/commit/d11174c6ddfa6fad5c3f47564985a65f46f83bff)) + + + + + ## [0.5.1](https://github.com/antfu/eslint-config/compare/v0.5.0...v0.5.1) (2021-03-13) **Note:** Version bump only for package @antfu/eslint-config-react diff --git a/packages/react/package.json b/packages/react/package.json index 6182add..9856540 100644 --- a/packages/react/package.json +++ b/packages/react/package.json @@ -1,6 +1,6 @@ { "name": "@antfu/eslint-config-react", - "version": "0.5.1", + "version": "0.6.0", "description": "", "main": "index.js", "keywords": [], @@ -19,7 +19,7 @@ "access": "public" }, "dependencies": { - "@antfu/eslint-config-ts": "^0.5.1", + "@antfu/eslint-config-ts": "^0.6.0", "eslint-plugin-react": "^7.22.0" }, "devDependencies": { diff --git a/packages/typescript/CHANGELOG.md b/packages/typescript/CHANGELOG.md index 69501b4..2e35bed 100644 --- a/packages/typescript/CHANGELOG.md +++ b/packages/typescript/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. +# [0.6.0](https://github.com/antfu/eslint-config/compare/v0.5.1...v0.6.0) (2021-03-14) + + +### Features + +* overhaul ([d11174c](https://github.com/antfu/eslint-config/commit/d11174c6ddfa6fad5c3f47564985a65f46f83bff)) + + + + + ## [0.5.1](https://github.com/antfu/eslint-config/compare/v0.5.0...v0.5.1) (2021-03-13) **Note:** Version bump only for package @antfu/eslint-config-ts diff --git a/packages/typescript/package.json b/packages/typescript/package.json index 27b37e6..e86df4c 100644 --- a/packages/typescript/package.json +++ b/packages/typescript/package.json @@ -1,6 +1,6 @@ { "name": "@antfu/eslint-config-ts", - "version": "0.5.1", + "version": "0.6.0", "description": "", "main": "index.js", "keywords": [], @@ -17,7 +17,7 @@ "typescript": ">=3.9" }, "dependencies": { - "@antfu/eslint-config-basic": "^0.5.1", + "@antfu/eslint-config-basic": "^0.6.0", "@typescript-eslint/eslint-plugin": "^4.17.0", "@typescript-eslint/parser": "^4.17.0" }, diff --git a/packages/vue/CHANGELOG.md b/packages/vue/CHANGELOG.md index 99b2eb8..9311298 100644 --- a/packages/vue/CHANGELOG.md +++ b/packages/vue/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. +# [0.6.0](https://github.com/antfu/eslint-config/compare/v0.5.1...v0.6.0) (2021-03-14) + + +### Features + +* overhaul ([d11174c](https://github.com/antfu/eslint-config/commit/d11174c6ddfa6fad5c3f47564985a65f46f83bff)) + + + + + ## [0.5.1](https://github.com/antfu/eslint-config/compare/v0.5.0...v0.5.1) (2021-03-13) **Note:** Version bump only for package @antfu/eslint-config-vue diff --git a/packages/vue/package.json b/packages/vue/package.json index 2678e5f..b656b46 100644 --- a/packages/vue/package.json +++ b/packages/vue/package.json @@ -1,6 +1,6 @@ { "name": "@antfu/eslint-config-vue", - "version": "0.5.1", + "version": "0.6.0", "description": "", "main": "index.js", "keywords": [], @@ -16,7 +16,7 @@ "access": "public" }, "dependencies": { - "@antfu/eslint-config-ts": "^0.5.1", + "@antfu/eslint-config-ts": "^0.6.0", "eslint-plugin-vue": "7.7.0" }, "devDependencies": {