From 1fdf62ec1858f61ac7dbf459f4c70393b3f322b4 Mon Sep 17 00:00:00 2001 From: Roman Sedov Date: Wed, 18 Dec 2019 16:18:04 +0300 Subject: [PATCH] chore(release): v1.0.0-rc.5 (#37) --- CHANGELOG.md | 16 ++++++++++++++++ lerna.json | 2 +- packages/eslint-plugin/CHANGELOG.md | 8 ++++++++ packages/eslint-plugin/package.json | 2 +- packages/linters/CHANGELOG.md | 8 ++++++++ packages/linters/package.json | 4 ++-- 6 files changed, 36 insertions(+), 4 deletions(-) create mode 100644 packages/eslint-plugin/CHANGELOG.md create mode 100644 packages/linters/CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md index 37cc394..c0f048d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,21 @@ # Change Log +All notable changes to this project will be documented in this file. +See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## 1.0.0-rc.5 (2019-12-18) + +- fix(eslint-plugin): fix "@tinkoff/eslint-plugin" dependency by switching to lerna (#35) ([cf67afb](https://github.com/TinkoffCreditSystems/linters/commit/cf67afb)), closes [#35](https://github.com/TinkoffCreditSystems/linters/issues/35) +- fix(eslint): fix "@tinkoff/member-ordering" rule failing (#29) ([a2964c0](https://github.com/TinkoffCreditSystems/linters/commit/a2964c0)), closes [#29](https://github.com/TinkoffCreditSystems/linters/issues/29) +- fix(eslint) Use native parser for js (#33) ([6b93c99](https://github.com/TinkoffCreditSystems/linters/commit/6b93c99)), closes [#33](https://github.com/TinkoffCreditSystems/linters/issues/33) +- feat(eslint): add eslint rules (#23) ([f141671](https://github.com/TinkoffCreditSystems/linters/commit/f141671)), closes [#23](https://github.com/TinkoffCreditSystems/linters/issues/23) +- feat(eslint): migrate rest of custom rules to eslint (#24) ([20d24cb](https://github.com/TinkoffCreditSystems/linters/commit/20d24cb)), closes [#24](https://github.com/TinkoffCreditSystems/linters/issues/24) +- feat(prettier): prettier enabled by default for .md, .less and ng-templates (#32) ([ad08682](https://github.com/TinkoffCreditSystems/linters/commit/ad08682)), closes [#32](https://github.com/TinkoffCreditSystems/linters/issues/32) +- feat(tslint): change angular member ordering (#21) ([b0d7112](https://github.com/TinkoffCreditSystems/linters/commit/b0d7112)), closes [#21](https://github.com/TinkoffCreditSystems/linters/issues/21) +- feat(tslint): interfaces shoud not start with "I" symbol ([e22f9f0](https://github.com/TinkoffCreditSystems/linters/commit/e22f9f0)) + +# Change Log + # [0.5.0](https://github.com/TinkoffCreditSystems/linters/compare/v0.4.0...v0.5.0) (2019-10-11) diff --git a/lerna.json b/lerna.json index 248ae19..2c46aba 100644 --- a/lerna.json +++ b/lerna.json @@ -1,6 +1,6 @@ { "packages": ["packages/*"], - "version": "1.0.0-rc.4", + "version": "1.0.0-rc.5", "command": { "version": { "allowBranch": ["master", "release/*"] diff --git a/packages/eslint-plugin/CHANGELOG.md b/packages/eslint-plugin/CHANGELOG.md new file mode 100644 index 0000000..022170d --- /dev/null +++ b/packages/eslint-plugin/CHANGELOG.md @@ -0,0 +1,8 @@ +# Change Log + +All notable changes to this project will be documented in this file. +See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## 1.0.0-rc.5 (2019-12-18) + +- fix(eslint-plugin): fix dependency + add lerna (#35) ([cf67afb](https://github.com/TinkoffCreditSystems/linters/commit/cf67afb)), closes [#35](https://github.com/TinkoffCreditSystems/linters/issues/35) diff --git a/packages/eslint-plugin/package.json b/packages/eslint-plugin/package.json index 1511db2..daf7c6b 100644 --- a/packages/eslint-plugin/package.json +++ b/packages/eslint-plugin/package.json @@ -1,6 +1,6 @@ { "name": "@tinkoff/eslint-plugin", - "version": "1.0.0-rc.4", + "version": "1.0.0-rc.5", "description": "Custom ESLint rules of Tinkoff", "license": "Apache-2.0", "main": "lib/index.js", diff --git a/packages/linters/CHANGELOG.md b/packages/linters/CHANGELOG.md new file mode 100644 index 0000000..022170d --- /dev/null +++ b/packages/linters/CHANGELOG.md @@ -0,0 +1,8 @@ +# Change Log + +All notable changes to this project will be documented in this file. +See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## 1.0.0-rc.5 (2019-12-18) + +- fix(eslint-plugin): fix dependency + add lerna (#35) ([cf67afb](https://github.com/TinkoffCreditSystems/linters/commit/cf67afb)), closes [#35](https://github.com/TinkoffCreditSystems/linters/issues/35) diff --git a/packages/linters/package.json b/packages/linters/package.json index d6c461f..2ab1eff 100644 --- a/packages/linters/package.json +++ b/packages/linters/package.json @@ -1,6 +1,6 @@ { "name": "@tinkoff/linters", - "version": "1.0.0-rc.4", + "version": "1.0.0-rc.5", "description": "Linter configs and custom TSLint rules of Tinkoff", "license": "Apache-2.0", "scripts": { @@ -24,7 +24,7 @@ "url": "https://github.com/TinkoffCreditSystems/linters.git" }, "dependencies": { - "@tinkoff/eslint-plugin": "^1.0.0-rc.4", + "@tinkoff/eslint-plugin": "^1.0.0-rc.5", "@typescript-eslint/eslint-plugin": "^2.7.0", "@typescript-eslint/eslint-plugin-tslint": "^2.7.0", "@typescript-eslint/experimental-utils": "^2.8.0",