Skip to content

Commit

Permalink
Merge branch 'feature-3.1.0.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
bvenners committed Nov 30, 2019
2 parents e6dd727 + 19c72be commit bb6af27
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion 3.1.x/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ addSbtPlugin("ch.epfl.scala" % "sbt-scalafix" % "0.9.4")
- Add the following settings to your `build.sbt` or, if you don't have a `build.sbt`:

```
scalafixDependencies in ThisBuild += "org.scalatest" %% "autofix" % "3.1.0.0-RC3"
scalafixDependencies in ThisBuild += "org.scalatest" %% "autofix" % "3.1.0.0"
addCompilerPlugin(scalafixSemanticdb) // enable SemanticDB
```
Expand Down
10 changes: 5 additions & 5 deletions 3.1.x/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ skip in publish := true

lazy val rules = project.settings(
moduleName := "autofix",
version := "3.1.0.0-RC3",
version := "3.1.0.0",
crossScalaVersions := List("2.12.8", "2.11.12"),
organization := "org.scalatest",
homepage := Some(url("https://github.com/scalatest/autofix")),
Expand Down Expand Up @@ -49,8 +49,8 @@ lazy val input = project.settings(
skip in publish := true,
libraryDependencies ++=
Seq(
"org.scalatest" %% "scalatest" % "3.1.0-RC3",
"org.scalacheck" %% "scalacheck" % "1.14.0",
"org.scalatest" %% "scalatest" % "3.1.0",
"org.scalacheck" %% "scalacheck" % "1.14.2",
"org.easymock" % "easymockclassextension" % "3.2",
"org.jmock" % "jmock-legacy" % "2.8.3",
"org.mockito" % "mockito-core" % "1.10.19",
Expand All @@ -64,8 +64,8 @@ lazy val output = project.settings(
skip in publish := true,
libraryDependencies ++=
Seq(
"org.scalatest" %% "scalatest" % "3.1.0-RC3",
"org.scalacheck" %% "scalacheck" % "1.14.0",
"org.scalatest" %% "scalatest" % "3.1.0",
"org.scalacheck" %% "scalacheck" % "1.14.2",
"org.easymock" % "easymockclassextension" % "3.2",
"org.jmock" % "jmock-legacy" % "2.8.3",
"org.mockito" % "mockito-core" % "1.10.19",
Expand Down

0 comments on commit bb6af27

Please sign in to comment.