From 10fc233b2555044b145c9bbd9f602d43e8df2216 Mon Sep 17 00:00:00 2001 From: Adi Dahiya Date: Fri, 31 Jul 2020 10:59:31 -0400 Subject: [PATCH] Prepare release v6.1.3 (#4944) --- CHANGELOG.md | 6 +++++- package.json | 2 +- src/linter.ts | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ad92cd28efe..12fee4bce0a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Change Log +## v6.1.3 + +- [bugfix] add support for TypeScript 4.0 peer dependency (#4943) + ## v6.1.2 - [bugfix] restore typings compatibility with TS < 3.8 (#4933) @@ -517,7 +521,7 @@ Thanks to our contributors! ## :warning: Deprecations -- [deprecation][`no-unused-variable`](https://palantir.github.io/tslint/rules/no-unused-variable/) is deprecated because typescript now covers most of its functionality (#3919) +- [deprecation] [`no-unused-variable`](https://palantir.github.io/tslint/rules/no-unused-variable/) is deprecated because typescript now covers most of its functionality (#3919) ## :tada: Features diff --git a/package.json b/package.json index 3cb3b13c6b6..a1718d7bf15 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "tslint", - "version": "6.1.2", + "version": "6.1.3", "description": "An extensible static analysis linter for the TypeScript language", "bin": { "tslint": "./bin/tslint" diff --git a/src/linter.ts b/src/linter.ts index cfddaa0175a..9b568b87040 100644 --- a/src/linter.ts +++ b/src/linter.ts @@ -42,7 +42,7 @@ import { arrayify, dedent, flatMap, mapDefined } from "./utils"; * Linter that can lint multiple files in consecutive runs. */ export class Linter { - public static VERSION = "6.1.2"; + public static VERSION = "6.1.3"; public static findConfiguration = findConfiguration; public static findConfigurationPath = findConfigurationPath;