Skip to content

Commit

Permalink
prepare version 1.0.16 (#144)
Browse files Browse the repository at this point in the history
* prepare version 1.0.16
* cleanup dependencies
  • Loading branch information
AlexHaxe authored Mar 4, 2019
1 parent d21d913 commit 51a30d4
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 11 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 (1.x.x)

## version 1.0.16 (2019-03-04)

- Added `TokenTreeCheckUtils.isMetadata` [#143](https://github.com/HaxeCheckstyle/tokentree/issues/143)
- Fixed handling of OpBool after `null` [#140](https://github.com/HaxeCheckstyle/tokentree/issues/140)
- Fixed comments before `catch` [#140](https://github.com/HaxeCheckstyle/tokentree/issues/140)
Expand Down
3 changes: 1 addition & 2 deletions buildToken.hxml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@
-cp test
-lib hxparse
-lib haxeparser
-lib compiletime
-lib hxargs
--each

-D keep_whitespace
Expand All @@ -12,3 +10,4 @@
-D checkstyle
-D debugTokenTree
-x TokenTestMain
# --macro nullSafety('tokentree')
6 changes: 2 additions & 4 deletions gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,7 @@ module.exports = function(grunt) {
shell: {
libs: {
command: "haxelib install haxeparser 3.3.0 && " +
"haxelib install hxargs 3.0.2 && " +
"haxelib install compiletime 2.6.0 && " +
"haxelib install mcover 2.1.1 && " +
"haxelib install mcover && " +
"haxelib install munit"
}
},
Expand All @@ -31,7 +29,7 @@ module.exports = function(grunt) {
function haxeOptions() {
return {
build: {
hxml: "build.hxml"
hxml: "test.hxml"
}
};
}
2 changes: 1 addition & 1 deletion haxelib.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"AlexHaxe"
],
"releasenote": "bugfixes - see CHANGELOG for details",
"version": "1.0.15",
"version": "1.0.16",
"url": "https://github.com/HaxeCheckstyle/tokentree",
"dependencies": {}
}
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "tokentree",
"version": "1.0.15",
"description": "TokenTree library used by haxe-checkstyle",
"version": "1.0.16",
"description": "TokenTree library used by haxe-checkstyle, haxe-formatter and haxe-languageserver",
"repository": {
"type": "git",
"url": "https://github.com/HaxeCheckstyle/tokentree"
Expand Down
2 changes: 0 additions & 2 deletions test.hxml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@
-cp test
-cp resources
-lib haxeparser
-lib compiletime
-lib hxargs
-lib mcover
-lib munit
-D unittest
Expand Down

0 comments on commit 51a30d4

Please sign in to comment.