diff --git a/CHANGELOG.md b/CHANGELOG.md index c574243cc63..b730f887261 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,18 @@ Change Log === +v3.13.0-dev.0 +--- +* [new-rule] `ordered-imports` rule (#1325) +* [enhancement] MPEG transport stream files are ignored by the CLI (#1357) + +Thanks to our contributors! +* @chrismbarr +* @corydeppen +* @danvk +* @janaagaard75 +* @mprobst + v3.12.0-dev.2 --- * [enhancement] Support TypeScript v2.0.0-dev builds diff --git a/package.json b/package.json index 149684a6810..c8b60d4c0d8 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "tslint", - "version": "3.12.0-dev.2", + "version": "3.13.0-dev.0", "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 54d2a15df52..baab7ee144b 100644 --- a/src/tslint.ts +++ b/src/tslint.ts @@ -33,7 +33,7 @@ import { loadRules } from "./ruleLoader"; import { arrayify } from "./utils"; class Linter { - public static VERSION = "3.12.0-dev.2"; + public static VERSION = "3.13.0-dev.0"; public static findConfiguration = findConfiguration; public static findConfigurationPath = findConfigurationPath;