diff --git a/CHANGELOG b/CHANGELOG index 3737eefe..b9039568 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -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) diff --git a/README.rst b/README.rst index 626cbcc3..dd203cc1 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.8" + "org.scalariform" %% "scalariform" % "0.2.9" Integration with Eclipse ------------------------ diff --git a/build.sbt b/build.sbt index 7d9abe97..2deb3e16 100644 --- a/build.sbt +++ b/build.sbt @@ -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" @@ -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 @@ -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") ) ) diff --git a/version.sbt b/version.sbt index 676a7b41..039c32d2 100644 --- a/version.sbt +++ b/version.sbt @@ -1 +1 @@ -version in ThisBuild := "0.2.8" +version in ThisBuild := "0.2.9"