From 73d5258d44e370ee7e56b6a3a0a040eb34ddeb93 Mon Sep 17 00:00:00 2001 From: Jason Killian Date: Fri, 22 Jan 2016 16:59:21 -0500 Subject: [PATCH] Prepare release v3.3.0 --- CHANGELOG.md | 8 ++++++++ package.json | 2 +- src/tslint.ts | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3d5d7bcf1ca..3d6bda4f7ab 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,14 @@ Change Log === +v3.3.0 +--- +* [bugfix] Tweak TSLint build so TSLint works with typescript@next (#926) + +v3.3.0-dev.1 +--- +* [bugfix] Correctly handle more than one custom rules directory (#928) + v3.2.2 --- * Stable release containing changes from the last dev release diff --git a/package.json b/package.json index 3178d5ed050..62dad415010 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "tslint", - "version": "3.2.2", + "version": "3.3.0", "description": "a static analysis linter for TypeScript", "bin": { "tslint": "./bin/tslint" diff --git a/src/tslint.ts b/src/tslint.ts index 28987b368b2..9ef97b496c7 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.2.2"; + public static VERSION = "3.3.0"; public static findConfiguration = config; private fileName: string;