Skip to content

Commit

Permalink
Prepare v1.9.0 (#527)
Browse files Browse the repository at this point in the history
* prepare_v1.9.0
* added testcase for postfix exclamation mark, fixes #516
  • Loading branch information
AlexHaxe authored Sep 10, 2019
1 parent ba76d00 commit 31cf175
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 0 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,16 @@

## dev branch / next version (1.x.x)

## version 1.9.0 (2019-09-10)

- Added `fixedZeroIncrease` and `fixedZeroIncreaseBlocks` policies to `indentation.conditionalPolicy` ([#514](https://github.com/HaxeCheckstyle/haxe-formatter/issues/514))
- Added `alignedNestedIncrease` policies to `indentation.conditionalPolicy`, fixes [#519](https://github.com/HaxeCheckstyle/haxe-formatter/issues/519) ([#520](https://github.com/HaxeCheckstyle/haxe-formatter/issues/520))
- Added range to format API ([#524](https://github.com/HaxeCheckstyle/haxe-formatter/issues/524))
- Fixed missing space when returning an arrow function, fixes [#513](https://github.com/HaxeCheckstyle/haxe-formatter/issues/513) ([#514](https://github.com/HaxeCheckstyle/haxe-formatter/issues/514))
- Fixed conditionals in return types, fixes [#446](https://github.com/HaxeCheckstyle/haxe-formatter/issues/446) ([#515](https://github.com/HaxeCheckstyle/haxe-formatter/issues/515))
- Fixed null pointer issues in MarkWhitespace ([#521](https://github.com/HaxeCheckstyle/haxe-formatter/issues/521))
- Fixed path handling in Hashlink 1.1 ([#521](https://github.com/HaxeCheckstyle/haxe-formatter/issues/521))
- Fixed postfix exclamation mark, fixes [#516](https://github.com/HaxeCheckstyle/haxe-formatter/issues/516) ([#527](https://github.com/HaxeCheckstyle/haxe-formatter/issues/527))

## version 1.8.1 (2019-06-27)

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{}

---

class Main {
static function main() {
var object = {
a: b,
c: d!.e
};
}
}

---

class Main {
static function main() {
var object = {
a: b,
c: d!.e
};
}
}

0 comments on commit 31cf175

Please sign in to comment.