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

Commit 70e24bc

Browse files
committed
Prepare release 6.0.0
1 parent bdd38c0 commit 70e24bc

File tree

3 files changed

+21
-2
lines changed

3 files changed

+21
-2
lines changed

CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,24 @@
11
# Change Log
22

3+
## v6.0.0
4+
5+
This version has been marked as deprecated on NPM to encourage users to migrate to ESLint.
6+
7+
- [bugfix] fix `enforce-trailing-newline` option in [`file-header`](https://palantir.github.io/tslint/rules/file-header/) rule (#4890)
8+
- [bugfix] avoid writing to temp files with `writeFileSync` on macOS 10.15 (#4887)
9+
- [bugfix] fix crash in [`completed-docs`](https://palantir.github.io/tslint/rules/completed/) rule when tag contents are undefined (#4895)
10+
- [docs] fix example code of Radix rule (#4892)
11+
- [docs] Add missing colon after `[error]` in testing rules documentation (#4903)
12+
13+
Thanks to our contributors!
14+
15+
- Ivan Sorokin
16+
- Tanmoy Bhowmik
17+
- Meng Wang
18+
- Jay Bhagat
19+
- Aman Sharma
20+
- Josh Goldberg
21+
322
## v6.0.0-beta1
423

524
No changes from v6.0.0-beta0, just re-released to correctly mark with the `beta` and `next` dist-tags on NPM.

package.json

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

src/linter.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ import { arrayify, dedent, flatMap, mapDefined } from "./utils";
4242
* Linter that can lint multiple files in consecutive runs.
4343
*/
4444
export class Linter {
45-
public static VERSION = "6.0.0-beta1";
45+
public static VERSION = "6.0.0";
4646

4747
public static findConfiguration = findConfiguration;
4848
public static findConfigurationPath = findConfigurationPath;

0 commit comments

Comments
 (0)