Skip to content
This repository has been archived by the owner on Mar 25, 2021. It is now read-only.

Commit

Permalink
Prepare release v3.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Jason Killian committed Dec 16, 2015
1 parent b7206e2 commit 73103f2
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
Change Log
===

v3.2.1
---
* Stable release containing changes from the last dev release

v3.2.1-dev.1
---
* [enhancement] automatically generate a `tslint.json` file with new `--init` CLI command (#717)
* [bugfix] `no-var-keyword` rule detects the use of `var` in all types of `for` loops (#855)

v3.2.0
---
* Stable release containing changes from last two dev releases
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": "3.2.0",
"version": "3.2.1",
"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 @@ -25,7 +25,7 @@ import {ILinterOptions, LintResult} from "./lint";
import {loadRules} from "./ruleLoader";

class Linter {
public static VERSION = "3.2.0";
public static VERSION = "3.2.1";
public static findConfiguration = config;

private fileName: string;
Expand Down

0 comments on commit 73103f2

Please sign in to comment.