diff --git a/CHANGELOG.md b/CHANGELOG.md index 058b8ad..bed42c7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,11 +2,12 @@ ## dev branch / next version (1.x.x) +## version 1.0.30 (2020-11-02) + - Fixed arrow functions - Fixed type parameter detection - Fixed Dollar handling - ## version 1.0.29 (2020-11-01) - Added TokenTreeDef ([#191](https://github.com/HaxeCheckstyle/tokentree/issues/191)) diff --git a/haxelib.json b/haxelib.json index ac39c4c..d627d71 100644 --- a/haxelib.json +++ b/haxelib.json @@ -7,8 +7,8 @@ "contributors": [ "AlexHaxe" ], - "releasenote": "fixed @in handling, detects more POpen types - see CHANGELOG for details", - "version": "1.0.29", + "releasenote": "fixed type parameter and dollar handling - see CHANGELOG for details", + "version": "1.0.30", "url": "https://github.com/HaxeCheckstyle/tokentree", "dependencies": {} } \ No newline at end of file diff --git a/makeReleaseZip.sh b/makeReleaseZip.sh index ada5b41..066b671 100755 --- a/makeReleaseZip.sh +++ b/makeReleaseZip.sh @@ -2,9 +2,9 @@ npm install npx lix download -npx lix use haxe 4.0.5 +npx lix use haxe 4.1.4 haxe test.hxml rm -f tokentree.zip -zip -9 -r -q tokentree.zip src haxelib.json hxformat.json package.json README.md CHANGELOG.md LICENSE \ No newline at end of file +zip -9 -r -q tokentree.zip src haxelib.json hxformat.json package.json README.md CHANGELOG.md LICENSE diff --git a/package-lock.json b/package-lock.json index fba42a5..ac51fb8 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,13 +1,13 @@ { "name": "tokentree", - "version": "1.0.28", + "version": "1.0.30", "lockfileVersion": 1, "requires": true, "dependencies": { "lix": { - "version": "15.9.0", - "resolved": "https://registry.npmjs.org/lix/-/lix-15.9.0.tgz", - "integrity": "sha512-XyIVUZ9Mr3DNPXwbvKrAS3t1XeeBugbrva/YoMUQSJLrmCwVNlx1/ishj4bkZ/WdH1x0m1Smd767zwyr6wy/8g==", + "version": "15.10.1", + "resolved": "https://registry.npmjs.org/lix/-/lix-15.10.1.tgz", + "integrity": "sha512-UZX+p4i+2ZSEyI6p2Yu1sfC0pRRFnFHDpNQ2+FqhxmBG8cCiHZkj+I8FqCK4AUuQ/VOPE/bK69JbWez+OG3zaA==", "dev": true } } diff --git a/package.json b/package.json index c35c62d..6acdf9e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "tokentree", - "version": "1.0.29", + "version": "1.0.30", "description": "TokenTree library used by haxe-checkstyle, haxe-formatter and haxe-languageserver", "repository": { "type": "git", @@ -16,7 +16,7 @@ "email": "Alexander.Blum@gmail.com" }, "devDependencies": { - "lix": "^15.9.0" + "lix": "^15.10.1" }, "bugs": "https://github.com/HaxeCheckstyle/tokentree/issues", "license": "MIT"