Skip to content

Commit 235561e

Browse files
committed
Prepare release 5.9.1
1 parent a4dc874 commit 235561e

File tree

3 files changed

+10
-2
lines changed

3 files changed

+10
-2
lines changed

CHANGELOG.md

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

4+
v5.9.1
5+
---
6+
7+
## :hammer_and_wrench: Bugfixes
8+
9+
- [bugfix] Removed extraneous deprecation warning produced when using `tslint:recommended` or `tslint:latest` by disabling `typeof-compare` in these rulesets. (#3639)
10+
- [bugfix] Resolve directories as absolute paths when validating custom `rulesDirectory` paths, which fixes usage with tslint-loader. (#3640)
11+
412
v5.9.0
513
---
614

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "tslint",
3-
"version": "5.9.0",
3+
"version": "5.9.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, flatMap, mapDefined } from "./utils";
4141
* Linter that can lint multiple files in consecutive runs.
4242
*/
4343
export class Linter {
44-
public static VERSION = "5.9.0";
44+
public static VERSION = "5.9.1";
4545

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

0 commit comments

Comments
 (0)