Skip to content

Commit

Permalink
Merge pull request #275 from godenji/0.2.7
Browse files Browse the repository at this point in the history
0.2.7 release
  • Loading branch information
godenji committed Feb 8, 2019
2 parents d722d18 + 08b7be4 commit 8905d2f
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 5 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
------------------------
Expand Down
4 changes: 2 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
package scalariform.formatter
import scalariform.parser._
import scalariform.formatter.preferences._

// format: OFF
class TrailingCommasTest extends AbstractFormatterTest {
Expand Down
2 changes: 1 addition & 1 deletion version.sbt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version in ThisBuild := "0.2.7-SNAPSHOT"
version in ThisBuild := "0.2.7"

0 comments on commit 8905d2f

Please sign in to comment.