Skip to content

Commit

Permalink
2.2.0-beta
Browse files Browse the repository at this point in the history
  • Loading branch information
gscshoyru committed May 5, 2015
1 parent 8062fe4 commit 9d0281c
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 2 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,18 @@
Change Log
===
v2.2.0-beta
---
* Upgraded Typescript compiler to 1.5
* **BREAKING CHANGES**
* due to changes to the typescript compiler API, old custom rules may no longer work and may need to be rewritten
* the JSON formatter's line and character positions are now back to being 0-indexed instead of 1-indexed
* [bugs] #328 #334 #319 #351 #365 #254
* [bug] fixes for tslint behavior around template strings (fixes #357, #349, #332, and more)
* [new-rule] `align` rule now enforces vertical alignment on parameters, arguments, and statements
* [new-rule] `switch-default` enforces a `default` case in `switch` statements
* [feature] `no-duplicate-variable` rule now additionally checks if function parameters have been shadowed
* Additional fixes to existing rules to work as before with the typescript 1.5 compiler

===
v2.1.1
---
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "tslint",
"version": "2.1.1",
"version": "2.2.0-beta",
"description": "a static analysis linter for TypeScript",
"bin": {
"tslint": "./bin/tslint"
Expand Down
2 changes: 1 addition & 1 deletion src/tslint.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ module Lint {
private source: string;
private options: ILinterOptions;

public static VERSION = "2.1.1";
public static VERSION = "2.2.0-beta";

constructor(fileName: string, source: string, options: ILinterOptions) {
this.fileName = fileName;
Expand Down

0 comments on commit 9d0281c

Please sign in to comment.