Skip to content

Commit ddb030f

Browse files
authored
prepare version 2.4.0 (#430)
1 parent 8dc93ab commit ddb030f

File tree

4 files changed

+17
-7
lines changed

4 files changed

+17
-7
lines changed

CHANGES.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
## dev branch / next version (2.x.x)
22

3+
## version 2.4.0 (2018-06-02)
4+
35
- New check ExtendedEmptyLines [#426](https://github.com/HaxeCheckstyle/haxe-checkstyle/issues/426) + [#427](https://github.com/HaxeCheckstyle/haxe-checkstyle/issues/427)
46
- Added check's names to text output [#420](https://github.com/HaxeCheckstyle/haxe-checkstyle/issues/420)
57
- Added version number to configuration file [#422](https://github.com/HaxeCheckstyle/haxe-checkstyle/issues/422)

gruntfile.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ module.exports = function(grunt) {
1515
haxe: haxeOptions(),
1616

1717
zip: {
18-
"checkstyle.zip": [
18+
"haxe-checkstyle.zip": [
1919
"src/**",
2020
"resources/sample-config.json", "resources/logo.png", "resources/codeclimate_pr.png",
2121
"haxelib.json", "run.n", "README.md", "CHANGES.md"

haxelib.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@
1818
"AlexHaxe",
1919
"Gama11"
2020
],
21-
"releasenote": "improved automatic coding style detection and error handling - see CHANGES",
22-
"version": "2.3.1",
21+
"releasenote": "new ExtendedEmptyLine check; refactored exclusion logic - see CHANGES",
22+
"version": "2.4.0",
2323
"url": "https://github.com/HaxeCheckstyle/haxe-checkstyle",
2424
"dependencies": {
2525

package.json

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"name": "checkstyle",
3-
"version": "2.3.1",
2+
"name": "haxe-checkstyle",
3+
"version": "2.4.0",
44
"description": "Automated code analysis ideal for projects that want to enforce a coding standard.",
55
"repository": {
66
"type": "git",
@@ -17,13 +17,21 @@
1717
"cross"
1818
],
1919
"author": {
20-
"name": "Adi Reddy Mora",
21-
"email": "adiinteractive@gmail.com"
20+
"name": "Alexander Blum",
21+
"email": "Alexander.Blum@gmail.com"
2222
},
23+
"contributors": [{
24+
"name": "Adi Reddy Mora"
25+
},
26+
{
27+
"name": "Jens Fischer"
28+
}
29+
],
2330
"dependencies": {
2431
"grunt": "latest",
2532
"grunt-cli": "latest"
2633
},
34+
"bugs": "https://github.com/HaxeCheckstyle/haxe-checkstyle/issues",
2735
"license": "MIT",
2836
"devDependencies": {
2937
"grunt": "^0.4.5",

0 commit comments

Comments
 (0)