diff --git a/CHANGELOG b/CHANGELOG index 74541f0d..da43f7b0 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,8 @@ +0.2.7 (8/February/19) + +* Added trailing comma support (PR #262 by @marekzebrowski]) +* Added support for Scala 2.13 (PR #272 by @Sciss) + 0.2.6 (29/October/17) * Removed OSGi configuration, no longer needed for Scala-IDE (PR #258 by @sschaef) diff --git a/README.rst b/README.rst index bb2e2191..4cc5d72e 100644 --- a/README.rst +++ b/README.rst @@ -52,7 +52,7 @@ Usage within a project Have a use for the scalariform source code directly? You can use it as a build dependency: :: - "org.scalariform" %% "scalariform" % "0.2.6" + "org.scalariform" %% "scalariform" % "0.2.7" Integration with Eclipse ------------------------ diff --git a/build.sbt b/build.sbt index 0cef9f55..98728b4c 100644 --- a/build.sbt +++ b/build.sbt @@ -45,9 +45,9 @@ def scalac2_10Options = Seq( def scalac2_11Options = Seq( "-deprecation:false", + "-Xlint", "-Xfatal-warnings", - "-Ywarn-unused-import", - "-Ywarn-unused" + "-Ywarn-unused-import" ) def publishSettings(projectName: String) = Seq( diff --git a/scalariform/src/test/scala/scalariform/formatter/TrailingCommasTest.scala b/scalariform/src/test/scala/scalariform/formatter/TrailingCommasTest.scala index a65ecad6..a56d4fc8 100644 --- a/scalariform/src/test/scala/scalariform/formatter/TrailingCommasTest.scala +++ b/scalariform/src/test/scala/scalariform/formatter/TrailingCommasTest.scala @@ -1,6 +1,5 @@ package scalariform.formatter import scalariform.parser._ -import scalariform.formatter.preferences._ // format: OFF class TrailingCommasTest extends AbstractFormatterTest { diff --git a/version.sbt b/version.sbt index 7965a5da..3f517ada 100644 --- a/version.sbt +++ b/version.sbt @@ -1 +1 @@ -version in ThisBuild := "0.2.7-SNAPSHOT" +version in ThisBuild := "0.2.7"