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

Commit

Permalink
Prepare release 6.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
adidahiya committed Jan 21, 2020
1 parent bdd38c0 commit 70e24bc
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 2 deletions.
19 changes: 19 additions & 0 deletions 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.
Expand Down
2 changes: 1 addition & 1 deletion 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"
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.0.0-beta1";
public static VERSION = "6.0.0";

public static findConfiguration = findConfiguration;
public static findConfigurationPath = findConfigurationPath;
Expand Down

0 comments on commit 70e24bc

Please sign in to comment.