8000 chore: publish v3.7.0 · jasnross/typescript-eslint@e75067a · GitHub
[go: up one dir, main page]

Skip to content

Commit e75067a

Browse files
committed
chore: publish v3.7.0
1 parent 88f08f4 commit e75067a

File tree

22 files changed

+142
-28
lines changed

22 files changed

+142
-28
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,20 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [3.7.0](https://github.com/typescript-eslint/typescript-eslint/compare/v3.6.1...v3.7.0) (2020-07-20)
7+
8+
9+
### Features
10+
11+
* **eslint-plugin:** [naming-convention] allow selecting only `const` variables ([#2291](https://github.com/typescript-eslint/typescript-eslint/issues/2291)) ([156d058](https://github.com/typescript-eslint/typescript-eslint/commit/156d058fee835fdf1ed827a5ad4a80d57190cc54))
12+
* **eslint-plugin:** [no-empty-function] add `decoratedFunctions` option ([#2295](https://github.com/typescript-eslint/typescript-eslint/issues/2295)) ([88f08f4](https://github.com/typescript-eslint/typescript-eslint/commit/88f08f410760f58fdc2de58ecd9dab9610821642))
13+
* **typescript-estree:** support short-circuiting assignment operators ([#2307](https://github.com/typescript-eslint/typescript-eslint/issues/2307)) ([2c90d9f](https://github.com/typescript-eslint/typescript-eslint/commit/2c90d9fa3aa5ebd7db697dddb7762bca2dd0e06b))
14+
* **typescript-estree:** support type annotations on catch clauses ([#2306](https://github.com/typescript-eslint/typescript-eslint/issues/2306)) ([b5afe9c](https://github.com/typescript-eslint/typescript-eslint/commit/b5afe9c560b9f38c8dffc312a600db30944129c8))
15+
16+
17+
18+
19+
620
## [3.6.1](https://github.com/typescript-eslint/typescript-eslint/compare/v3.6.0...v3.6.1) (2020-07-13)
721

822

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "3.6.1",
2+
"version": "3.7.0",
33
"npmClient": "yarn",
44
"useWorkspaces": true,
55
"stream": true

packages/eslint-plugin-internal/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [3.7.0](https://github.com/typescript-eslint/typescript-eslint/compare/v3.6.1...v3.7.0) (2020-07-20)
7+
8+
**Note:** Version bump only for package @typescript-eslint/eslint-plugin-internal
9+
10+
11+
12+
13+
614
## [3.6.1](https://github.com/typescript-eslint/typescript-eslint/compare/v3.6.0...v3.6.1) (2020-07-13)
715

816
**Note:** Version bump only for package @typescript-eslint/eslint-plugin-internal

packages/eslint-plugin-internal/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@typescript-eslint/eslint-plugin-internal",
3-
"version": "3.6.1",
3+
"version": "3.7.0",
44
"private": true,
55
"main": "dist/index.js",
66
"scripts": {
@@ -13,7 +13,7 @@
1313
"typecheck": "tsc -p tsconfig.json --noEmit"
1414
},
1515
"dependencies": {
16-
"@typescript-eslint/experimental-utils": "3.6.1",
16+
"@typescript-eslint/experimental-utils": "3.7.0",
1717
"prettier": "*"
1818
}
1919
}

packages/eslint-plugin-tslint/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [3.7.0](https://github.com/typescript-eslint/typescript-eslint/compare/v3.6.1...v3.7.0) (2020-07-20)
7+
8+
**Note:** Version bump only for package @typescript-eslint/eslint-plugin-tslint
9+
10+
11+
12+
13+
614
## [3.6.1](https://github.com/typescript-eslint/typescript-eslint/compare/v3.6.0...v3.6.1) (2020-07-13)
715

816
**Note:** Version bump only for package @typescript-eslint/eslint-plugin-tslint

packages/eslint-plugin-tslint/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@typescript-eslint/eslint-plugin-tslint",
3-
"version": "3.6.1",
3+
"version": "3.7.0",
44
"main": "dist/index.js",
55
"typings": "src/index.ts",
66
"description": "TSLint wrapper plugin for ESLint",
@@ -32,7 +32,7 @@
3232
"typecheck": "tsc -p tsconfig.json --noEmit"
3333
},
3434
"dependencies": {
35-
"@typescript-eslint/experimental-utils": "3.6.1",
35+
"@typescript-eslint/experimental-utils": "3.7.0",
3636
"lodash": "^4.17.15"
3737
},
3838
"peerDependencies": {
@@ -42,6 +42,6 @@
4242
},
4343
"devDependencies": {
4444
"@types/lodash": "^4.14.149",
45-
"@typescript-eslint/parser": "3.6.1"
45+
"@typescript-eslint/parser": "3.7.0"
4646
}
4747
}

packages/eslint-plugin/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,18 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [3.7.0](https://github.com/typescript-eslint/typescript-eslint/compare/v3.6.1...v3.7.0) (2020-07-20)
7+
8+
9+
### Features
10+
11+
* **eslint-plugin:** [naming-convention] allow selecting only `const` variables ([#2291](https://github.com/typescript-eslint/typescript-eslint/issues/2291)) ([156d058](https://github.com/typescript-eslint/typescript-eslint/commit/156d058fee835fdf1ed827a5ad4a80d57190cc54))
12+
* **eslint-plugin:** [no-empty-function] add `decoratedFunctions` option ([#2295](https://github.com/typescript-eslint/typescript-eslint/issues/2295)) ([88f08f4](https://github.com/typescript-eslint/typescript-eslint/commit/88f08f410760f58fdc2de58ecd9dab9610821642))
13+
14+
15+
16+
17+
618
## [3.6.1](https://github.com/typescript-eslint/typescript-eslint/compare/v3.6.0...v3.6.1) (2020-07-13)
719

820

packages/eslint-plugin/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@typescript-eslint/eslint-plugin",
3-
"version": "3.6.1",
3+
"version": "3.7.0",
44
"description": "TypeScript plugin for ESLint",
55
"keywords": [
66
"eslint",
@@ -42,7 +42,7 @@
4242
"typecheck": "tsc -p tsconfig.json --noEmit"
4343
},
4444
"dependencies": {
45-
"@typescript-eslint/experimental-utils": "3.6.1",
45+
"@typescript-eslint/experimental-utils": "3.7.0",
4646
"debug": "^4.1.1",
4747
"functional-red-black-tree": "^1.0.1",
4848
"regexpp": "^3.0.0",

packages/experimental-utils/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [3.7.0](https://github.com/typescript-eslint/typescript-eslint/compare/v3.6.1...v3.7.0) (2020-07-20)
7+
8+
**Note:** Version bump only for package @typescript-eslint/experimental-utils
9+
10+
11+
12+
13+
614
## [3.6.1](https://github.com/typescript-eslint/typescript-eslint/compare/v3.6.0...v3.6.1) (2020-07-13)
715

816
**Note:** Version bump only for package @typescript-eslint/experimental-utils

packages/experimental-utils/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@typescript-eslint/experimental-utils",
3-
"version": "3.6.1",
3+
"version": "3.7.0",
44
"description": "(Experimental) Utilities for working with TypeScript + ESLint together",
55
"keywords": [
66
"eslint",
@@ -40,8 +40,8 @@
4040
},
4141
"dependencies": {
4242
"@types/json-schema": "^7.0.3",
43-
"@typescript-eslint/types": "3.6.1",
44-
"@typescript-eslint/typescript-estree": "3.6.1",
43+
"@typescript-eslint/types": "3.7.0",
44+
"@typescript-eslint/typescript-estree": "3.7.0",
4545
"eslint-scope": "^5.0.0",
4646
"eslint-utils": "^2.0.0"
4747
},

0 commit comments

Comments
 (0)
0