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

Prepare release v3.7.0-dev.5 #1119

Merged
merged 1 commit into from
Apr 12, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
Change Log
===

v3.7.0-dev.5
---
* [bugfix] Allow JS directives in namespaces (#1115)

v3.7.3
---
* Stable release containing changes from the last dev release (v3.7.0-dev.4)
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.7.0-dev.4",
"version": "3.7.0-dev.5",
"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 @@ -33,7 +33,7 @@ import {loadRules} from "./ruleLoader";
import {arrayify} from "./utils";

class Linter {
public static VERSION = "3.7.0-dev.4";
public static VERSION = "3.7.0-dev.5";
public static findConfiguration = findConfiguration;
public static findConfigurationPath = findConfigurationPath;
public static getRulesDirectories = getRulesDirectories;
Expand Down