Skip to content
This repository has been archived by the owner on Mar 25, 2021. It is now read-only.

Prepare release v6.1.3 #4944

Merged
merged 1 commit into from Jul 31, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 5 additions & 1 deletion 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)
Expand Down Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion 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"
Expand Down
2 changes: 1 addition & 1 deletion src/linter.ts
Expand Up @@ -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;
Expand Down