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

Commit

Permalink
Merge pull request #704 from palantir/release-2.5.1
Browse files Browse the repository at this point in the history
Prepare release 2.5.1
  • Loading branch information
jkillian committed Oct 1, 2015
2 parents c2f25f1 + 40b6aa4 commit c233ab3
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 6 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
Change Log
===

v2.5.1
---
* [new-rule] no-inferrable-types rule (#676)
* [new-rule-option] "avoid-escape" option for quotemark rule (#543)
* [bugfix] type declaration for tslint external module #686
* [enhancement] `AbstractRule` and `AbstractFormatter` are now abstract classes (#631)
* Note: `Lint.abstract()` is now deprecated

v2.5.0
---
* Use TypeScript compiler `v1.6.2`
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.5.0",
"version": "2.5.1",
"description": "a static analysis linter for TypeScript",
"bin": {
"tslint": "./bin/tslint"
Expand Down
2 changes: 1 addition & 1 deletion src/formatters/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "1.5.0-beta",
"version": "1.6.2",
"compilerOptions": {
"module": "commonjs",
"noImplicitAny": true,
Expand Down
2 changes: 1 addition & 1 deletion src/rules/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "1.5.0-beta",
"version": "1.6.2",
"compilerOptions": {
"module": "commonjs",
"noImplicitAny": true,
Expand Down
2 changes: 1 addition & 1 deletion src/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "1.5.0-beta",
"version": "1.6.2",
"compilerOptions": {
"module": "commonjs",
"noImplicitAny": true,
Expand Down
2 changes: 1 addition & 1 deletion src/tslint.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ module Lint {
}

export class Linter {
public static VERSION = "2.5.0";
public static VERSION = "2.5.1";

private fileName: string;
private source: string;
Expand Down
2 changes: 1 addition & 1 deletion test/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "1.5.0-beta",
"version": "1.6.2",
"compilerOptions": {
"module": "commonjs",
"noImplicitAny": true,
Expand Down

0 comments on commit c233ab3

Please sign in to comment.