Skip to content

Commit

Permalink
update bin compat versions to 1.0.0 and 1.1.0 (#2264)
Browse files Browse the repository at this point in the history
* update bin compat version to 1.1.0

* multiple mima version check
  • Loading branch information
kailuowang authored May 21, 2018
1 parent 88e25ee commit 9af5186
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -204,10 +204,10 @@ lazy val docSettings = Seq(
includeFilter in Jekyll := (includeFilter in makeSite).value
)

lazy val binaryCompatibleVersion = "1.0.0"
lazy val binaryCompatibleVersions = Set("1.0.0", "1.1.0")

def mimaSettings(moduleName: String) = Seq(
mimaPreviousArtifacts := Set("org.typelevel" %% moduleName % binaryCompatibleVersion)
mimaPreviousArtifacts := binaryCompatibleVersions.map(v => "org.typelevel" %% moduleName % v)
)

lazy val docs = project
Expand Down

0 comments on commit 9af5186

Please sign in to comment.