Skip to content

Commit

Permalink
Merge pull request #3 from commandbox-modules/master
Browse files Browse the repository at this point in the history
Upgraded CFLint to latest 1.4.0 release
  • Loading branch information
jsteinshouer authored Jul 10, 2018
2 parents 192798b + cac08cf commit 24412b9
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 7 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 1.2.0

* Upgraded CFLint to latest 1.4.0 release

## 1.1.0

* Fix for case sensitive OSs
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

This is a [CommandBox](https://www.ortussolutions.com/products/commandbox) module for linting your CFML code using [CFLint](https://github.com/cflint/CFLint).

CFLint Version: 1.3.0
CFLint Version: 1.4.0

## Install

Expand Down
11 changes: 6 additions & 5 deletions box.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"name":"commandbox-cflint",
"version":"1.1.0",
"version":"1.2.0",
"author":"Jason Steinshouer",
"location":"jsteinshouer/commandbox-cflint#v1.1.0",
"location":"jsteinshouer/commandbox-cflint#v1.2.0",
"homepage":"https://github.com/jsteinshouer/commandbox-cflint",
"documentation":"https://github.com/jsteinshouer/commandbox-cflint",
"repository":{
Expand All @@ -15,11 +15,11 @@
"description":"CommandBox command for running CFLint",
"type":"commandbox-modules",
"dependencies":{
"CFLint-1.3.0-all":"jar:https://github.com/cflint/CFLint/releases/download/CFLint-1.3.0/CFLint-1.3.0-all.jar"
"CFLint-1.4.0-all":"jar:https://github.com/cflint/CFLint/releases/download/CFLint-1.4.0/CFLint-1.4.0-all.jar"
},
"devDependencies":{},
"installPaths":{
"CFLint-1.3.0-all":"lib/CFLint-1.3.0-all"
"CFLint-1.4.0-all":"lib/CFLint-1.4.0-all"
},
"scripts":{
"postVersion":"package set location='jsteinshouer/commandbox-cflint#v`package version`'",
Expand All @@ -32,6 +32,7 @@
"examples"
],
"contributors":[
"Luis Majano <[email protected]>"
"Luis Majano <[email protected]>",
"Michael Anderson <[email protected]>"
]
}
2 changes: 1 addition & 1 deletion commands/cflint.cfc
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
component{

// What cflint version we are using.
variables.CFLINT_VERSION = "1.3.0";
variables.CFLINT_VERSION = "1.4.0";

/*
* Constructor
Expand Down

0 comments on commit 24412b9

Please sign in to comment.