From f17a48ad99321d05447f800040db137bfc9634de Mon Sep 17 00:00:00 2001 From: Jason Killian Date: Mon, 11 Apr 2016 14:30:25 -0400 Subject: [PATCH] Prepare release v3.7.0-dev.3 (#1103) --- CHANGELOG.md | 7 +++++++ package.json | 2 +- src/tslint.ts | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c716a327539..2b22f0cb7d9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,13 @@ Change Log === +v3.7.0-dev.3 +--- +* [bugfix] `findConfigurationPath` always returns an absolute path (#1093) +* [bugfix] Update `findup-sync` dependency (#1080) +* [bugfix] `declare global` no longer triggers `no-internal-module` rule (#1069) +* [bugfix] Valid JS directives no longer trigger `no-unused-expression` rule (#1050) + v3.7.1 --- * Stable release containing changes from the last dev release diff --git a/package.json b/package.json index 8296deed9f9..5b8f62f5c4c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "tslint", - "version": "3.7.0-dev.2", + "version": "3.7.0-dev.3", "description": "a static analysis linter for TypeScript", "bin": { "tslint": "./bin/tslint" diff --git a/src/tslint.ts b/src/tslint.ts index 2f7fe059799..d1bd02c198d 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.7.0-dev.2"; + public static VERSION = "3.7.0-dev.3"; public static findConfiguration = findConfiguration; public static findConfigurationPath = findConfigurationPath; public static getRulesDirectories = getRulesDirectories;