Skip to content

Commit 3f39ea7

Browse files
authored
added support for inline markup (#513)
* added support for inline markup * retired Haxe 4.1.5 compilation support
1 parent 1f8f0ae commit 3f39ea7

File tree

11 files changed

+24
-19
lines changed

11 files changed

+24
-19
lines changed

.github/workflows/checkstyle-linux.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ubuntu-latest
1616
strategy:
1717
matrix:
18-
haxe-version: ['4.1.5', '4.2.5', 'nightly']
18+
haxe-version: ['4.2.5', 'nightly']
1919
env:
2020
CC_TEST_REPORTER_ID: c4eda639526d39fbcab7ab9fc68c4046d4e597df56dbcb552b42d27b3580b758
2121
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}

.haxerc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
2-
"version": "4.2.5",
2+
"version": "779b005",
33
"resolveLibs": "scoped"
44
}

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22

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

5+
## version 2.8.1 (2022-09-07)
6+
7+
- Added support for inline markup ([#513](https://github.com/HaxeCheckstyle/haxe-checkstyle/issues/513))
8+
- Retired Haxe 4.1.5 compile support ([#513](https://github.com/HaxeCheckstyle/haxe-checkstyle/issues/513))
9+
510
## version 2.8.0 (2022-08-24)
611

712
- New check `CommentedOutCode` to check comments for commented out code fragments ([#512](https://github.com/HaxeCheckstyle/haxe-checkstyle/issues/512))

haxe_libraries/haxeparser.hxml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# @install: lix --silent download "gh://github.com/HaxeCheckstyle/haxeparser#dace004f6aff39cf7cf3a9279da24f63b27de2af" into haxeparser/3.3.0/github/dace004f6aff39cf7cf3a9279da24f63b27de2af
1+
# @install: lix --silent download "gh://github.com/HaxeCheckstyle/haxeparser#1ea2a8915956ac3af6f1a11c67e0e56261b75929" into haxeparser/3.3.0/github/1ea2a8915956ac3af6f1a11c67e0e56261b75929
22
-lib hxparse
3-
-cp ${HAXE_LIBCACHE}/haxeparser/3.3.0/github/dace004f6aff39cf7cf3a9279da24f63b27de2af/src
3+
-cp ${HAXE_LIBCACHE}/haxeparser/3.3.0/github/1ea2a8915956ac3af6f1a11c67e0e56261b75929/src
44
-D haxeparser=3.3.0

haxe_libraries/hxjsonast.hxml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
# @install: lix --silent download "haxelib:/hxjsonast#1.0.1" into hxjsonast/1.0.1/haxelib
2-
-cp ${HAXE_LIBCACHE}/hxjsonast/1.0.1/haxelib/src
3-
-D hxjsonast=1.0.1
1+
# @install: lix --silent download "haxelib:/hxjsonast#1.1.0" into hxjsonast/1.1.0/haxelib
2+
-cp ${HAXE_LIBCACHE}/hxjsonast/1.1.0/haxelib/src
3+
-D hxjsonast=1.1.0

haxe_libraries/test-adapter.hxml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
# @install: lix --silent download "haxelib:/test-adapter#2.0.1" into test-adapter/2.0.1/haxelib
1+
# @install: lix --silent download "haxelib:/test-adapter#2.0.4" into test-adapter/2.0.4/haxelib
22
-lib json2object
3-
-cp ${HAXE_LIBCACHE}/test-adapter/2.0.1/haxelib/
4-
-D test-adapter=2.0.1
3+
-cp ${HAXE_LIBCACHE}/test-adapter/2.0.4/haxelib/
4+
-D test-adapter=2.0.4
55
--macro _testadapter.Macro.init()

haxe_libraries/tokentree.hxml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
# @install: lix --silent download "haxelib:/tokentree#1.1.2" into tokentree/1.1.2/haxelib
2-
-cp ${HAXE_LIBCACHE}/tokentree/1.1.2/haxelib/src
3-
-D tokentree=1.1.2
1+
# @install: lix --silent download "haxelib:/tokentree#1.2.1" into tokentree/1.2.1/haxelib
2+
-cp ${HAXE_LIBCACHE}/tokentree/1.2.1/haxelib/src
3+
-D tokentree=1.2.1

haxelib.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@
1818
"adireddy",
1919
"Gama11"
2020
],
21-
"releasenote": "added CommentedOutCode check - see CHANGELOG",
22-
"version": "2.8.0",
21+
"releasenote": "added support for inline markup - see CHANGELOG",
22+
"version": "2.8.1",
2323
"url": "https://github.com/HaxeCheckstyle/haxe-checkstyle",
2424
"dependencies": {}
2525
}

makeReleaseZip.sh

Lines changed: 1 addition & 1 deletion
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.1.4
5+
npx lix use haxe nightly
66

77
npx haxe buildAll.hxml
88

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)