Skip to content

Commit

Permalink
2.3.0-beta
Browse files Browse the repository at this point in the history
  • Loading branch information
adidahiya committed Jun 16, 2015
1 parent ddcb0fc commit 09df937
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Change Log
===
v2.3.0
v2.3.0-beta
---
* [bugs] #401 #367 #324 #352
* [new-rule] `no-var-keyword` disallows `var` in favor of `let` and `const`
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.3.0",
"version": "2.3.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 @@ -36,7 +36,7 @@ module Lint {
private source: string;
private options: ILinterOptions;

public static VERSION = "2.3.0";
public static VERSION = "2.3.0-beta";

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

0 comments on commit 09df937

Please sign in to comment.