Skip to content

Commit

Permalink
prepare version 2.7.0 (#503)
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexHaxe authored Dec 23, 2020
1 parent 75ccc4a commit 89b00f2
Show file tree
Hide file tree
Showing 6 changed files with 27 additions and 25 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## dev branch / next version (2.x.x)

## version 2.7.0 (2020-12-23)

- **Breaking Change** replaced `EnforceVarTypeHint` with `VarTypeHint` check ([#500](https://github.com/HaxeCheckstyle/haxe-checkstyle/issues/500))
- Added support for final in `MagicNumber`, fixes [#494](https://github.com/HaxeCheckstyle/haxe-checkstyle/issues/494) ([#495](https://github.com/HaxeCheckstyle/haxe-checkstyle/issues/495))
- Fixed handling `OBJECT_DECL` token in `RightCurly`, fixes [#496](https://github.com/HaxeCheckstyle/haxe-checkstyle/issues/496) ([#497](https://github.com/HaxeCheckstyle/haxe-checkstyle/issues/497))
Expand Down
6 changes: 3 additions & 3 deletions haxe_libraries/tokentree.hxml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# @install: lix --silent download "gh://github.com/HaxeCheckstyle/tokentree#8d317ea6b0c472234c154ce21ec92f2cf1629d3e" into tokentree/1.0.31/github/8d317ea6b0c472234c154ce21ec92f2cf1629d3e
-cp ${HAXE_LIBCACHE}/tokentree/1.0.31/github/8d317ea6b0c472234c154ce21ec92f2cf1629d3e/src
-D tokentree=1.0.31
# @install: lix --silent download "haxelib:/tokentree#1.1.0" into tokentree/1.1.0/haxelib
-cp ${HAXE_LIBCACHE}/tokentree/1.1.0/haxelib/src
-D tokentree=1.1.0
4 changes: 2 additions & 2 deletions haxelib.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
"adireddy",
"Gama11"
],
"releasenote": "breaking changes: MethodLength settings changed, new checks CodeSimilarity, EnforceVarTypeHint, AvoidIdentifier, ArrowFunction and NestedControlFlow, some Haxe 4 fixes and a few bugfixes - see CHANGELOG",
"version": "2.6.1",
"releasenote": "breaking change: EnforceVarTypeHint renamed to VarTypeHint - see CHANGELOG",
"version": "2.7.0",
"url": "https://github.com/HaxeCheckstyle/haxe-checkstyle",
"dependencies": {}
}
2 changes: 1 addition & 1 deletion makeReleaseZip.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

npm install
npx lix download
npx lix use haxe 4.0.5
npx lix use haxe 4.1.4

npx haxe buildAll.hxml

Expand Down
10 changes: 5 additions & 5 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

28 changes: 14 additions & 14 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@haxecheckstyle/haxe-checkstyle",
"version": "2.6.1",
"version": "2.7.0",
"description": "Automated code analysis ideal for projects that want to enforce a coding standard.",
"repository": {
"type": "git",
Expand Down Expand Up @@ -29,20 +29,20 @@
}
],
"devDependencies": {
"lix": "^15.9.0"
"lix": "^15.10.1"
},
"bugs": "https://github.com/HaxeCheckstyle/haxe-checkstyle/issues",
"license": "MIT",
"bin": {
"haxe-checkstyle": "bin/checkstyle.js"
},
"files": [
"bin"
],
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"scripts": {
"build": "haxe buildAll.hxml"
}
"bin": {
"haxe-checkstyle": "bin/checkstyle.js"
},
"files": [
"bin"
],
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"scripts": {
"build": "haxe buildAll.hxml"
}
}

0 comments on commit 89b00f2

Please sign in to comment.