Skip to content

Commit ac05171

Browse files
authored
Prepare release v4.0.1 (palantir#1755)
1 parent 3b5e893 commit ac05171

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
Change Log
22
===
33

4+
v4.0.1
5+
---
6+
* [bugfix] Removed `no-unused-variable` rule from recommended config, as it was causing spurious deprecation warnings.
7+
48
v4.0.0-dev.2
59
---
610
* Include latest v4.0.0 changes

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "tslint",
3-
"version": "4.0.0",
3+
"version": "4.0.1",
44
"description": "An extensible static analysis linter for the TypeScript language",
55
"bin": {
66
"tslint": "./bin/tslint"

src/linter.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ import { arrayify, dedent } from "./utils";
4141
* Linter that can lint multiple files in consecutive runs.
4242
*/
4343
class Linter {
44-
public static VERSION = "4.0.0";
44+
public static VERSION = "4.0.1";
4545

4646
public static findConfiguration = findConfiguration;
4747
public static findConfigurationPath = findConfigurationPath;

0 commit comments

Comments
 (0)