Skip to content

Commit 89b00f2

Browse files
authored
prepare version 2.7.0 (#503)
1 parent 75ccc4a commit 89b00f2

File tree

6 files changed

+27
-25
lines changed

6 files changed

+27
-25
lines changed

CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

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

5+
## version 2.7.0 (2020-12-23)
6+
57
- **Breaking Change** replaced `EnforceVarTypeHint` with `VarTypeHint` check ([#500](https://github.com/HaxeCheckstyle/haxe-checkstyle/issues/500))
68
- 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))
79
- 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))

haxe_libraries/tokentree.hxml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
# @install: lix --silent download "gh://github.com/HaxeCheckstyle/tokentree#8d317ea6b0c472234c154ce21ec92f2cf1629d3e" into tokentree/1.0.31/github/8d317ea6b0c472234c154ce21ec92f2cf1629d3e
2-
-cp ${HAXE_LIBCACHE}/tokentree/1.0.31/github/8d317ea6b0c472234c154ce21ec92f2cf1629d3e/src
3-
-D tokentree=1.0.31
1+
# @install: lix --silent download "haxelib:/tokentree#1.1.0" into tokentree/1.1.0/haxelib
2+
-cp ${HAXE_LIBCACHE}/tokentree/1.1.0/haxelib/src
3+
-D tokentree=1.1.0

haxelib.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@
1818
"adireddy",
1919
"Gama11"
2020
],
21-
"releasenote": "breaking changes: MethodLength settings changed, new checks CodeSimilarity, EnforceVarTypeHint, AvoidIdentifier, ArrowFunction and NestedControlFlow, some Haxe 4 fixes and a few bugfixes - see CHANGELOG",
22-
"version": "2.6.1",
21+
"releasenote": "breaking change: EnforceVarTypeHint renamed to VarTypeHint - see CHANGELOG",
22+
"version": "2.7.0",
2323
"url": "https://github.com/HaxeCheckstyle/haxe-checkstyle",
2424
"dependencies": {}
2525
}

makeReleaseZip.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
npm install
44
npx lix download
5-
npx lix use haxe 4.0.5
5+
npx lix use haxe 4.1.4
66

77
npx haxe buildAll.hxml
88

package-lock.json

+5-5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+14-14
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@haxecheckstyle/haxe-checkstyle",
3-
"version": "2.6.1",
3+
"version": "2.7.0",
44
"description": "Automated code analysis ideal for projects that want to enforce a coding standard.",
55
"repository": {
66
"type": "git",
@@ -29,20 +29,20 @@
2929
}
3030
],
3131
"devDependencies": {
32-
"lix": "^15.9.0"
32+
"lix": "^15.10.1"
3333
},
3434
"bugs": "https://github.com/HaxeCheckstyle/haxe-checkstyle/issues",
3535
"license": "MIT",
36-
"bin": {
37-
"haxe-checkstyle": "bin/checkstyle.js"
38-
},
39-
"files": [
40-
"bin"
41-
],
42-
"publishConfig": {
43-
"registry": "https://npm.pkg.github.com/"
44-
},
45-
"scripts": {
46-
"build": "haxe buildAll.hxml"
47-
}
36+
"bin": {
37+
"haxe-checkstyle": "bin/checkstyle.js"
38+
},
39+
"files": [
40+
"bin"
41+
],
42+
"publishConfig": {
43+
"registry": "https://npm.pkg.github.com/"
44+
},
45+
"scripts": {
46+
"build": "haxe buildAll.hxml"
47+
}
4848
}

0 commit comments

Comments
 (0)