From 1e033f86492981708570d0becfeffa0b306a5ae4 Mon Sep 17 00:00:00 2001 From: Jason Killian Date: Fri, 1 Apr 2016 15:28:16 -0400 Subject: [PATCH] Prepare release v3.7.0 --- CHANGELOG.md | 23 +++++++++++++++++++++++ package.json | 2 +- src/tslint.ts | 2 +- 3 files changed, 25 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9d9b5ff64a0..f301ce35aab 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,29 @@ Change Log === +v3.7.0 +--- +* Stable release containing changes from the last dev release + +v3.7.0-dev.1 +--- +* [enhancement] `extends` field for `tslint.json` files (#997) +* [enhancement] `--force` CLI option (#1059) +* [enhancement] Improve how `Linter` class handles configurations with a `rulesDirectory` field (#1035) +* [new-rule] `no-angle-bracket-type-assertion` rule (#639) +* [new-rule-option] "allow-undefined-check" option for `triple-equals` rule (#602) +* [new-rule-option] "always-prefix" and "never-prefix" option for `interface-name` rule (#512) + +Thanks to our contributors! +* @Arnavion +* @chrismbarr +* @ChrisPearce +* @JoshuaKGoldberg +* @patsissonso +* @sasidhar +* @unional +* @vvakame + v3.6.0 --- * Stable release containing changes from the last dev release diff --git a/package.json b/package.json index 9a3556e4363..df6f7edf178 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "tslint", - "version": "3.6.0", + "version": "3.7.0", "description": "a static analysis linter for TypeScript", "bin": { "tslint": "./bin/tslint" diff --git a/src/tslint.ts b/src/tslint.ts index 73365ba5815..df90f84c9df 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.6.0"; + public static VERSION = "3.7.0"; public static findConfiguration = findConfiguration; public static findConfigurationPath = findConfigurationPath; public static getRulesDirectories = getRulesDirectories;