Skip to content

Commit c1c1d2f

Browse files
author
Daniel Trinh
committed
remove dummy build and add missing notes
1 parent 05d861a commit c1c1d2f

File tree

4 files changed

+23
-3
lines changed

4 files changed

+23
-3
lines changed

CHANGELOG

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
1-
0.1.6 (17/Jan/15)
2-
* FIX: FQN package name changed from scalariform to com.danieltrinh.scalariform to avoid dependency collision with prior mdr/scalariform fork
1+
0.1.6 (08/April/15)
2+
* FIX: Bug in parser prevented DOT characters inside type parameters (issue #44)
3+
* Newline no longer added for each function in `=> => =>` scenarios (issue #45)
4+
* Update build to sbt 0.13.7 and update java version validation (PR #42)
5+
* Rewrite -> into → when RewriteArrowSymbols is on (issue #34)
6+
* Sync maven build with sbt build (PR #22)
7+
* Add support for Scala 2.12 in the maven build (PR #20)
38

49
0.1.5 (4/May/14)
510
* FIX: Type formatter crash on multiline types

project/Build.scala

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ object ScalariformBuild extends Build {
2929
version := "0.1.6-SNAPSHOT",
3030
scalaVersion := "2.10.4",
3131
crossScalaVersions := Seq(
32-
"2.11.1",
32+
"2.11.6",
3333
"2.10.4",
3434
"2.9.3", "2.9.2", "2.9.1-1", "2.9.1", "2.9.0-1", "2.9.0"
3535
),
@@ -49,6 +49,7 @@ object ScalariformBuild extends Build {
4949
publish := (),
5050
publishLocal := ())) aggregate (scalariform, cli, misc)
5151

52+
5253
implicit class Regex(sc: StringContext) {
5354
def r = new util.matching.Regex(sc.parts.mkString, sc.parts.tail.map(_ => "x"): _*)
5455
}

scalariform/notes/0.1.5.markdown

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
* FIX: Type formatter crash on multiline types
2+
* Track scalac parser -- allow trait-position parents to have parameter blocks
3+
* Sync changes to InferredSemicolonParser
4+
* FIX: Scaladoc formatting wasn't idempotent (issue #62)
5+
* Added "SpacesAroundMultiImports" option
6+
* Modified "AlignParameters" option to align by column -- see readme
7+
* Deprecated "PreserveDanglingCloseParenthesis" in favor of
8+
automatic parentheses level detection.

scalariform/notes/0.1.6.markdown

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
* FIX: Bug in parser prevented DOT characters inside type parameters (issue #44)
2+
* Newline no longer added for each function in `=> => =>` scenarios (issue #45)
3+
* Update build to sbt 0.13.7 and update java version validation (PR #42)
4+
* Rewrite -> into → when RewriteArrowSymbols is on (issue #34)
5+
* Sync maven build with sbt build (PR #22)
6+
* Add support for Scala 2.12 in the maven build (PR #20)

0 commit comments

Comments
 (0)