Skip to content

Commit

Permalink
Prepare release v3.0.0-dev.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Jason Killian committed Nov 13, 2015
1 parent 8359bf2 commit 6b42ce0
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.3
---
* Typescript is now a peerDependency (#791)
* [bugfix] `no-unused-variable` rule with `react` option works with self-closing JSX tags (#776)
* [bugfix] `use-strict` bugfix (#544)

v3.0.0-dev.2
---
* [new-rule-option] "react" option for `no-unused-variable` rule (#698, #725)
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.2",
"version": "3.0.0-dev.3",
"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.2";
public static VERSION = "3.0.0-dev.3";
public static findConfiguration = config;

private fileName: string;
Expand Down

0 comments on commit 6b42ce0

Please sign in to comment.