Skip to content

Commit

Permalink
Merge pull request #281 from godenji/0.2.9
Browse files Browse the repository at this point in the history
0.2.9 release
  • Loading branch information
godenji authored Jun 2, 2019
2 parents cbc0da9 + 2183838 commit 7674ce1
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
0.2.9 (unreleased)
0.2.9 (2/June/19)
* 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)

0.2.8 (29/March/19)
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.8"
"org.scalariform" %% "scalariform" % "0.2.9"

Integration with Eclipse
------------------------
Expand Down
6 changes: 3 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ lazy val commonSettings = inConfig(Test)(Defaults.testSettings) ++
sonatypeProfileName := organization.value,
scalaVersion := crossScalaVersions.value.head,
crossScalaVersions := Seq(
"2.13.0-RC2",
"2.13.0-RC3",
"2.12.8",
"2.11.12",
"2.10.7"
Expand Down Expand Up @@ -92,7 +92,7 @@ lazy val scalariform = (project
settings(publishSettings("scalariform"))
settings(
libraryDependencies ++= scala2_11Dependencies.value,
libraryDependencies += "org.scalatest" %% "scalatest" % "3.1.0-SNAP11" % Test,
libraryDependencies += "org.scalatest" %% "scalatest" % "3.1.0-SNAP12" % Test,
// sbt doesn't automatically load the content of the MANIFST.MF file, therefore
// we have to do it here by ourselves. Furthermore, the version format in the
// MANIFEST.MF is `version.qualifier`, which means that we have to replace
Expand Down Expand Up @@ -122,7 +122,7 @@ lazy val scalariform = (project
Package.JarManifest(m)
},
testOptions in Test += Tests.Argument("-oI"),
mimaPreviousArtifacts := Set(organization.value %% "scalariform" % "0.2.7")
mimaPreviousArtifacts := Set(organization.value %% "scalariform" % "0.2.8")
)
)

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.8"
version in ThisBuild := "0.2.9"

0 comments on commit 7674ce1

Please sign in to comment.