From 8cc913392588ab30c9ec1293df500f6143452804 Mon Sep 17 00:00:00 2001 From: Jason Killian Date: Thu, 30 Jun 2016 21:26:16 -0400 Subject: [PATCH] Prepare Release v3.13.0 (#1369) --- CHANGELOG.md | 16 ++++++++++++++++ package.json | 2 +- src/tslint.ts | 2 +- 3 files changed, 18 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e19c2647b95..9b58903a603 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,22 @@ Change Log === +v3.13.0 +--- +* Stable release containing changes from the last dev release (v3.13.0-dev.0) + +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.1 --- * Stable release containing changes from the last dev release (v3.12.0-dev.1) diff --git a/package.json b/package.json index d454dd84ca4..a4918513b0b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "tslint", - "version": "3.12.1", + "version": "3.13.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 7b7df3586dd..e70eb94df21 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.1"; + public static VERSION = "3.13.0"; public static findConfiguration = findConfiguration; public static findConfigurationPath = findConfigurationPath;