From 70e24bcb2379e0e60f7d3bfa91fc0c1b6c0c8a9c Mon Sep 17 00:00:00 2001 From: Adi Dahiya Date: Tue, 21 Jan 2020 14:49:32 -0500 Subject: [PATCH] Prepare release 6.0.0 --- CHANGELOG.md | 19 +++++++++++++++++++ package.json | 2 +- src/linter.ts | 2 +- 3 files changed, 21 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2c40e1bfe41..d46cd2943a6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,24 @@ # Change Log +## v6.0.0 + +This version has been marked as deprecated on NPM to encourage users to migrate to ESLint. + +- [bugfix] fix `enforce-trailing-newline` option in [`file-header`](https://palantir.github.io/tslint/rules/file-header/) rule (#4890) +- [bugfix] avoid writing to temp files with `writeFileSync` on macOS 10.15 (#4887) +- [bugfix] fix crash in [`completed-docs`](https://palantir.github.io/tslint/rules/completed/) rule when tag contents are undefined (#4895) +- [docs] fix example code of Radix rule (#4892) +- [docs] Add missing colon after `[error]` in testing rules documentation (#4903) + +Thanks to our contributors! + +- Ivan Sorokin +- Tanmoy Bhowmik +- Meng Wang +- Jay Bhagat +- Aman Sharma +- Josh Goldberg + ## v6.0.0-beta1 No changes from v6.0.0-beta0, just re-released to correctly mark with the `beta` and `next` dist-tags on NPM. diff --git a/package.json b/package.json index 60fba3db129..04c694ae4b6 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "tslint", - "version": "6.0.0-beta1", + "version": "6.0.0", "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 9c2bf18c385..c9c1b3581b5 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.0.0-beta1"; + public static VERSION = "6.0.0"; public static findConfiguration = findConfiguration; public static findConfigurationPath = findConfigurationPath;