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 #768 from palantir/3.0.0-dev.2
Browse files Browse the repository at this point in the history
Prepare release 3.0.0-dev.2
  • Loading branch information
adidahiya committed Nov 4, 2015
2 parents f635849 + 529eaba commit 4d331a7
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
Change Log
===

v3.0.0-dev.2
---
* [new-rule-option] "react" option for `no-unused-variable` rule (#698, #725)
* [bugfix] Fix how `Linter` is exported from "tslint" module (#760)
* [bugfix] `no-use-before-declare` rule doesn't crash on uncompilable code (#763)

v3.0.0-dev.1
---
* **BREAKING CHANGES**
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.0.0-dev.1",
"version": "3.0.0-dev.2",
"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 @@ -20,7 +20,7 @@ import {findConfiguration as config} from "./configuration";
const moduleDirectory = path.dirname(module.filename);

class Linter {
public static VERSION = "3.0.0-dev.1";
public static VERSION = "3.0.0-dev.2";
public static findConfiguration = config;

private fileName: string;
Expand Down

0 comments on commit 4d331a7

Please sign in to comment.