Skip to content

Commit 8905d2f

Browse files
authored
Merge pull request #275 from godenji/0.2.7
0.2.7 release
2 parents d722d18 + 08b7be4 commit 8905d2f

File tree

5 files changed

+9
-5
lines changed

5 files changed

+9
-5
lines changed

CHANGELOG

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
0.2.7 (8/February/19)
2+
3+
* Added trailing comma support (PR #262 by @marekzebrowski])
4+
* Added support for Scala 2.13 (PR #272 by @Sciss)
5+
16
0.2.6 (29/October/17)
27

38
* Removed OSGi configuration, no longer needed for Scala-IDE (PR #258 by @sschaef)

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ Usage within a project
5252

5353
Have a use for the scalariform source code directly? You can use it as a build dependency: ::
5454

55-
"org.scalariform" %% "scalariform" % "0.2.6"
55+
"org.scalariform" %% "scalariform" % "0.2.7"
5656

5757
Integration with Eclipse
5858
------------------------

build.sbt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,9 @@ def scalac2_10Options = Seq(
4545

4646
def scalac2_11Options = Seq(
4747
"-deprecation:false",
48+
"-Xlint",
4849
"-Xfatal-warnings",
49-
"-Ywarn-unused-import",
50-
"-Ywarn-unused"
50+
"-Ywarn-unused-import"
5151
)
5252

5353
def publishSettings(projectName: String) = Seq(

scalariform/src/test/scala/scalariform/formatter/TrailingCommasTest.scala

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
package scalariform.formatter
22
import scalariform.parser._
3-
import scalariform.formatter.preferences._
43

54
// format: OFF
65
class TrailingCommasTest extends AbstractFormatterTest {

version.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version in ThisBuild := "0.2.7-SNAPSHOT"
1+
version in ThisBuild := "0.2.7"

0 commit comments

Comments
 (0)