Skip to content

Commit

Permalink
prepare version 1.10.1
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexHaxe committed Apr 12, 2020
1 parent a84c93c commit fb5ead3
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 12 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

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

## version 1.10.1 (2020-04-12)

- Fixed broken indentation after case with OpOr pattern, fixes [#576](https://github.com/HaxeCheckstyle/haxe-formatter/issues/576)
- Fixed missing linebreak between metadata and doc comment, fixes [#578](https://github.com/HaxeCheckstyle/haxe-formatter/issues/578)
- Fixed indentation in anon function body, fixes [#577](https://github.com/HaxeCheckstyle/haxe-formatter/issues/577)
Expand Down
6 changes: 3 additions & 3 deletions haxe3_libraries/tokentree.hxml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# @install: lix --silent download "haxelib:/tokentree#1.0.25" into tokentree/1.0.25/haxelib
-cp ${HAXE_LIBCACHE}/tokentree/1.0.25/haxelib/src
-D tokentree=1.0.25
# @install: lix --silent download "haxelib:/tokentree#1.0.26" into tokentree/1.0.26/haxelib
-cp ${HAXE_LIBCACHE}/tokentree/1.0.26/haxelib/src
-D tokentree=1.0.26
6 changes: 3 additions & 3 deletions haxe_libraries/tokentree.hxml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# @install: lix --silent download "haxelib:/tokentree#1.0.25" into tokentree/1.0.25/haxelib
-cp ${HAXE_LIBCACHE}/tokentree/1.0.25/haxelib/src
-D tokentree=1.0.25
# @install: lix --silent download "haxelib:/tokentree#1.0.26" into tokentree/1.0.26/haxelib
-cp ${HAXE_LIBCACHE}/tokentree/1.0.26/haxelib/src
-D tokentree=1.0.26
4 changes: 2 additions & 2 deletions haxelib.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
"style"
],
"description": "A code formatter for Haxe",
"version": "1.10.0",
"releasenote": "added case pattern wrapping, merge conflict file detection and various bugfixes - see CHANGELOG for details.",
"version": "1.10.1",
"releasenote": "fixed some regressions of 1.10.0 - see CHANGELOG for details.",
"contributors": [
"AlexHaxe",
"Gama11"
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "haxe-formatter",
"version": "1.10.0",
"version": "1.10.1",
"description": "A code formatter for Haxe",
"repository": {
"type": "git",
Expand Down
4 changes: 2 additions & 2 deletions src/formatter/marker/Indenter.hx
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ class Indenter {
var config:IndentationConfig;
var parsedCode:Null<ParsedCode>;

public function new(config:Config) {
this.config = fconfig;
public function new(config:IndentationConfig) {
this.config = config;
if (config.character.toLowerCase() == "tab") {
config.character = "\t";
}
Expand Down

0 comments on commit fb5ead3

Please sign in to comment.