Skip to content

Commit

Permalink
prepare v1.7.0 (#471)
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexHaxe authored May 16, 2019
1 parent 2b15d8c commit 65af3ef
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

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

## version 1.7.0 (2019-05-16)
## version 1.7.0 (2019-05-17)

- Added `wrapping.multiVar`, fixes [#355](https://github.com/HaxeCheckstyle/haxe-formatter/issues/355), fixes [#430](https://github.com/HaxeCheckstyle/haxe-formatter/issues/430) ([#422](https://github.com/HaxeCheckstyle/haxe-formatter/issues/422) + [#434](https://github.com/HaxeCheckstyle/haxe-formatter/issues/434))
- Added `emptylines.afterFieldsWithDocComments`, fixes [#385](https://github.com/HaxeCheckstyle/haxe-formatter/issues/385), fixes [#432](https://github.com/HaxeCheckstyle/haxe-formatter/issues/432) ([#425](https://github.com/HaxeCheckstyle/haxe-formatter/issues/425) + [#434](https://github.com/HaxeCheckstyle/haxe-formatter/issues/434))
Expand Down
6 changes: 6 additions & 0 deletions test/testcases/indentation/opassignop.hxtest
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
class Main {
public function main(){
profiles.get (className).get (methodName).elapsedTime += t - profiles.get (className).get (methodName).startTime;
profiles.get (className).get (methodName).elapsedTime = t - profiles.get (className).get (methodName).startTime;
profiles.get (className)
.get (methodName)
.elapsedTime += t - profiles.get (className)
Expand All @@ -23,6 +24,11 @@ class Main {
.elapsedTime += t - profiles.get(className)
.get(methodName)
.startTime;
profiles.get(className)
.get(methodName)
.elapsedTime = t - profiles.get(className)
.get(methodName)
.startTime;
profiles.get(className)
.get(methodName)
.elapsedTime += t - profiles.get(className)
Expand Down

0 comments on commit 65af3ef

Please sign in to comment.