diff --git a/.github/workflows/formatter.yml b/.github/workflows/formatter.yml index 8df170f0..f40cfcc6 100644 --- a/.github/workflows/formatter.yml +++ b/.github/workflows/formatter.yml @@ -14,7 +14,7 @@ jobs: build: strategy: matrix: - haxe-version: ['3.4.7', '4.0.3', 'nightly'] + haxe-version: ['3.4.7', '4.0.5', 'nightly'] platform: [ubuntu-latest, macos-latest, windows-latest] runs-on: ${{ matrix.platform }} steps: @@ -75,5 +75,5 @@ jobs: rm run.js npx neko run.n -s . --check - name: Upload results to codecov - if: success() && matrix.platform == 'ubuntu-latest' && matrix.haxe-version == '4.0.3' + if: success() && matrix.platform == 'ubuntu-latest' && matrix.haxe-version == '4.0.5' run: bash <(curl -s https://codecov.io/bash) || echo "Codecov did not collect coverage reports" diff --git a/CHANGELOG.md b/CHANGELOG.md index 531dba3f..21ed51ac 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## dev branch / next version (1.x.x) +## version 1.9.2 (2019-09-19) + - Added unittests for empty lines ([#535](https://github.com/HaxeCheckstyle/haxe-formatter/issues/535)) - Fixed range format issues with multiline tokens ([#532](https://github.com/HaxeCheckstyle/haxe-formatter/issues/532) + [#533](https://github.com/HaxeCheckstyle/haxe-formatter/issues/533)) - Fixed extra indentation for parens after `=`, fixes [#534](https://github.com/HaxeCheckstyle/haxe-formatter/issues/534) ([#535](https://github.com/HaxeCheckstyle/haxe-formatter/issues/535)) diff --git a/haxelib.json b/haxelib.json index 210c4425..345daa13 100644 --- a/haxelib.json +++ b/haxelib.json @@ -8,8 +8,8 @@ "style" ], "description": "A code formatter for Haxe", - "version": "1.9.1", - "releasenote": "Fixed issues with range formatting API - see CHANGELOG for details.", + "version": "1.9.2", + "releasenote": "Fixed whitespace issues and changed build system to lix - see CHANGELOG for details.", "contributors": [ "AlexHaxe", "Gama11" diff --git a/package.json b/package.json index 1060a23b..b0d1aa23 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "haxe-formatter", - "version": "1.9.1", + "version": "1.9.2", "description": "A code formatter for Haxe", "repository": { "type": "git",