Skip to content

Commit 7674ce1

Browse files
authored
Merge pull request #281 from godenji/0.2.9
0.2.9 release
2 parents cbc0da9 + 2183838 commit 7674ce1

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

CHANGELOG

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
0.2.9 (unreleased)
1+
0.2.9 (2/June/19)
22
* Add new setting `UseUnicodeArrows` that allows to reverse the unicode arrow symbol replacement when set to false (in Scala 2.13 unicode arrows are deprecated)
33

44
0.2.8 (29/March/19)

README.rst

+1-1
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.8"
55+
"org.scalariform" %% "scalariform" % "0.2.9"
5656

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

build.sbt

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ lazy val commonSettings = inConfig(Test)(Defaults.testSettings) ++
1010
sonatypeProfileName := organization.value,
1111
scalaVersion := crossScalaVersions.value.head,
1212
crossScalaVersions := Seq(
13-
"2.13.0-RC2",
13+
"2.13.0-RC3",
1414
"2.12.8",
1515
"2.11.12",
1616
"2.10.7"
@@ -92,7 +92,7 @@ lazy val scalariform = (project
9292
settings(publishSettings("scalariform"))
9393
settings(
9494
libraryDependencies ++= scala2_11Dependencies.value,
95-
libraryDependencies += "org.scalatest" %% "scalatest" % "3.1.0-SNAP11" % Test,
95+
libraryDependencies += "org.scalatest" %% "scalatest" % "3.1.0-SNAP12" % Test,
9696
// sbt doesn't automatically load the content of the MANIFST.MF file, therefore
9797
// we have to do it here by ourselves. Furthermore, the version format in the
9898
// MANIFEST.MF is `version.qualifier`, which means that we have to replace
@@ -122,7 +122,7 @@ lazy val scalariform = (project
122122
Package.JarManifest(m)
123123
},
124124
testOptions in Test += Tests.Argument("-oI"),
125-
mimaPreviousArtifacts := Set(organization.value %% "scalariform" % "0.2.7")
125+
mimaPreviousArtifacts := Set(organization.value %% "scalariform" % "0.2.8")
126126
)
127127
)
128128

version.sbt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version in ThisBuild := "0.2.8"
1+
version in ThisBuild := "0.2.9"

0 commit comments

Comments
 (0)