diff --git a/CHANGELOG.md b/CHANGELOG.md index 6c7a6a1cb01..2c40e1bfe41 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Change Log +## 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. + ## v6.0.0-beta0 - :fire: BREAKING CHANGES :fire: diff --git a/package.json b/package.json index a0b393207b0..60fba3db129 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "tslint", - "version": "6.0.0-beta0", + "version": "6.0.0-beta1", "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 052a1a6f85b..620083428cd 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-beta0"; + public static VERSION = "6.0.0-beta1"; public static findConfiguration = findConfiguration; public static findConfigurationPath = findConfigurationPath;