Skip to content

Commit

Permalink
bump mima previos version to 2.0.0 (#795)
Browse files Browse the repository at this point in the history
* bump mima previos version to 2.0.0

* rollback scala version to 2.13.0
  • Loading branch information
julien-truffaut authored Jan 9, 2020
1 parent 63425f8 commit 06caa6e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ language: scala

scala:
- 2.12.10
- 2.13.1
- 2.13.0

jdk:
- openjdk8
Expand Down
6 changes: 3 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@ def scalaVersionSpecificFolders(srcName: String, srcBaseDir: java.io.File, scala
}

lazy val buildSettings = Seq(
scalaVersion := "2.13.1",
crossScalaVersions := Seq("2.12.10", "2.13.1"),
scalaVersion := "2.13.0",
crossScalaVersions := Seq("2.12.10", "2.13.0"),
scalatestVersion := "3.2.0-M1",
resolvers += "Sonatype OSS Snapshots" at "https://oss.sonatype.org/content/repositories/snapshots",
scalacOptions ++= Seq(
Expand Down Expand Up @@ -112,7 +112,7 @@ lazy val paradisePlugin = Def.setting{
lazy val kindProjector = "org.typelevel" % "kind-projector" % "0.11.0" cross CrossVersion.full

def mimaSettings(module: String): Seq[Setting[_]] = mimaDefaultSettings ++ Seq(
mimaPreviousArtifacts := Set("com.github.julien-truffaut" %% (s"monocle-${module}") % "1.6.0")
mimaPreviousArtifacts := Set("com.github.julien-truffaut" %% (s"monocle-${module}") % "2.0.0")
)

lazy val gitRev = sys.process.Process("git rev-parse HEAD").lineStream_!.head
Expand Down

0 comments on commit 06caa6e

Please sign in to comment.