diff --git a/CHANGES.md b/CHANGES.md index 9843db34..79621e62 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,7 @@ ## dev branch / next version (2.x.x) +## version 2.4.0 (2018-06-02) + - New check ExtendedEmptyLines [#426](https://github.com/HaxeCheckstyle/haxe-checkstyle/issues/426) + [#427](https://github.com/HaxeCheckstyle/haxe-checkstyle/issues/427) - Added check's names to text output [#420](https://github.com/HaxeCheckstyle/haxe-checkstyle/issues/420) - Added version number to configuration file [#422](https://github.com/HaxeCheckstyle/haxe-checkstyle/issues/422) diff --git a/gruntfile.js b/gruntfile.js index 3034d601..c27e3b9f 100644 --- a/gruntfile.js +++ b/gruntfile.js @@ -15,7 +15,7 @@ module.exports = function(grunt) { haxe: haxeOptions(), zip: { - "checkstyle.zip": [ + "haxe-checkstyle.zip": [ "src/**", "resources/sample-config.json", "resources/logo.png", "resources/codeclimate_pr.png", "haxelib.json", "run.n", "README.md", "CHANGES.md" diff --git a/haxelib.json b/haxelib.json index cf2e17ea..14f210f0 100644 --- a/haxelib.json +++ b/haxelib.json @@ -18,8 +18,8 @@ "AlexHaxe", "Gama11" ], - "releasenote": "improved automatic coding style detection and error handling - see CHANGES", - "version": "2.3.1", + "releasenote": "new ExtendedEmptyLine check; refactored exclusion logic - see CHANGES", + "version": "2.4.0", "url": "https://github.com/HaxeCheckstyle/haxe-checkstyle", "dependencies": { diff --git a/package.json b/package.json index ff983ad9..6757dc74 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { - "name": "checkstyle", - "version": "2.3.1", + "name": "haxe-checkstyle", + "version": "2.4.0", "description": "Automated code analysis ideal for projects that want to enforce a coding standard.", "repository": { "type": "git", @@ -17,13 +17,21 @@ "cross" ], "author": { - "name": "Adi Reddy Mora", - "email": "adiinteractive@gmail.com" + "name": "Alexander Blum", + "email": "Alexander.Blum@gmail.com" }, + "contributors": [{ + "name": "Adi Reddy Mora" + }, + { + "name": "Jens Fischer" + } + ], "dependencies": { "grunt": "latest", "grunt-cli": "latest" }, + "bugs": "https://github.com/HaxeCheckstyle/haxe-checkstyle/issues", "license": "MIT", "devDependencies": { "grunt": "^0.4.5",