diff --git a/CHANGELOG b/CHANGELOG index da43f7b0..47d6204a 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,7 @@ +0.2.8 (29/March/19) + +* Fix type mismatch between `Unit` and `TokenType` (PR #276 by @Philippus) + 0.2.7 (8/February/19) * Added trailing comma support (PR #262 by @marekzebrowski]) diff --git a/README.rst b/README.rst index 4cc5d72e..f4004d73 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.7" + "org.scalariform" %% "scalariform" % "0.2.8" Integration with Eclipse ------------------------ diff --git a/build.sbt b/build.sbt index 98728b4c..14762e9f 100644 --- a/build.sbt +++ b/build.sbt @@ -120,7 +120,7 @@ lazy val scalariform = (project Package.JarManifest(m) }, testOptions in Test += Tests.Argument("-oI"), - mimaPreviousArtifacts := Set(organization.value %% "scalariform" % "0.2.6") + mimaPreviousArtifacts := Set(organization.value %% "scalariform" % "0.2.7") ) ) diff --git a/version.sbt b/version.sbt index 3f517ada..676a7b41 100644 --- a/version.sbt +++ b/version.sbt @@ -1 +1 @@ -version in ThisBuild := "0.2.7" +version in ThisBuild := "0.2.8"