From f6c3843e829d0e02383fa63bcf69ad072e53252c Mon Sep 17 00:00:00 2001 From: Jason Killian Date: Fri, 11 Mar 2016 15:48:36 -0500 Subject: [PATCH] Prepare release v3.6.0-dev.1 --- CHANGELOG.md | 12 ++++++++++++ package.json | 2 +- src/tslint.ts | 2 +- 3 files changed, 14 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 331c8f68797..04875cf4f82 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,18 @@ Change Log === +v3.6.0-dev.1 +--- +* [enhancement] Add `--exclude` CLI option (#915) +* [bugfix] Fix `no-shadowed-variable` rule handling of standalone blocks (#1021) +* [deprecation] Configuration through `package.json` files (#1020) +* [API] Export additional configuration methods from top-level "tslint" module (#1009) + +Thanks to our contributors! +* @blakeembrey +* @hamhut1066 +* @meowtec + v3.5.0 --- * Stable release containing changes from the last dev release diff --git a/package.json b/package.json index a2923f83e2e..3fc59576366 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "tslint", - "version": "3.5.0-dev.1", + "version": "3.6.0-dev.1", "description": "a static analysis linter for TypeScript", "bin": { "tslint": "./bin/tslint" diff --git a/src/tslint.ts b/src/tslint.ts index 26189391ce5..5f0ecfe13da 100644 --- a/src/tslint.ts +++ b/src/tslint.ts @@ -25,7 +25,7 @@ import {ILinterOptions, LintResult} from "./lint"; import {loadRules} from "./ruleLoader"; class Linter { - public static VERSION = "3.5.0-dev.1"; + public static VERSION = "3.6.0-dev.1"; public static findConfiguration = findConfiguration; public static findConfigurationPath = findConfigurationPath; public static getRulesDirectories = getRulesDirectories;