diff --git a/CHANGELOG.md b/CHANGELOG.md index af5bde5d233..c55db7c9243 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,24 @@ Change Log === +v3.14.0-dev.1 +--- +* [new-rule] `arrow-parens` rule (#777) +* [new-rule] `max-file-line-count` rule (#1360) +* [new-rule] `no-unsafe-finally` rule (#1349) +* [new-rule] `no-for-in-array` rule (#1380) +* [new-rule] `object-literal-key-quotes` rule (#1364) +* [enhancement] Better `ban` rule failure messages (#1385) +* [enhancement] New stylish formatter (#1406) + +Thanks to our contributors! +* @chrismbarr +* @danvk +* @gjuchault +* @lowkay +* @ScottSWu +* @YuichiNukiyama + v3.14.0-dev.0 --- * [enhancement] Add optional type information to rules (#1323) diff --git a/package.json b/package.json index 21ca3fc1354..2050db04956 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "tslint", - "version": "3.14.0-dev.0", + "version": "3.14.0-dev.1", "description": "An extensible static analysis linter for the TypeScript language", "bin": { "tslint": "./bin/tslint" diff --git a/src/tslint.ts b/src/tslint.ts index a7438160e3f..085fb51cf1a 100644 --- a/src/tslint.ts +++ b/src/tslint.ts @@ -36,7 +36,7 @@ import { loadRules } from "./ruleLoader"; import { arrayify } from "./utils"; class Linter { - public static VERSION = "3.14.0-dev.0"; + public static VERSION = "3.14.0-dev.1"; public static findConfiguration = findConfiguration; public static findConfigurationPath = findConfigurationPath;