From 26380f6a440a22dc724db16ff0a7a3128ccf7be7 Mon Sep 17 00:00:00 2001 From: Jason Killian Date: Mon, 22 Aug 2016 10:52:02 -0400 Subject: [PATCH] Prepare release v3.15.0-dev.0 (#1501) --- CHANGELOG.md | 26 ++++++++++++++++++++++++++ package.json | 2 +- src/tslint.ts | 2 +- 3 files changed, 28 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 485847437a1..234a4b438d0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,32 @@ Change Log === +v3.15.0-dev.0 +--- +* [enhancement] Rules can automatically fix errors (#1423) +* [enhancement] Better error messages for invalid source files (#1480) +* [new-rule] `adjacent-overload-signatures` rule (#1426) +* [new-rule] `file-header` rule (#1411) +* [new-rule] `object-literal-shorthand` rule (#1488) +* [new-rule-option] `allow-declarations` option for `only-arrow-functions` rule (#1452) +* [new-rule-option] `import-sources-order` option for `ordered-imports` rule (#1466) +* [bugfix] `arrow-parens` rule handles async and generics (#1446, #1479) +* [bugfix] `comment-format` rule ignores tslint control comments (#1473) +* [bugfix] Fix `no-shadowed-variable` rule false positives (#1482) + +Thanks to our contributors! +* @apacala +* @danvk +* @DovydasNavickas +* @glen-84 +* @IllusionMH +* @JoshuaKGoldberg +* @markwongsk +* @rakatyal +* @rhysd +* @ScottSWu +* @YuichiNukiyama + v3.14.0 --- * Stable release containing changes from the last dev releases (v3.14.0-dev.0, v3.14.0-dev.1) diff --git a/package.json b/package.json index 2050db04956..d4ba76101ac 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "tslint", - "version": "3.14.0-dev.1", + "version": "3.15.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 088ba026588..f67693d3de9 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.1"; + public static VERSION = "3.15.0-dev.0"; public static findConfiguration = findConfiguration; public static findConfigurationPath = findConfigurationPath;