From 56561d7d8790b5b6c5d0f7f151c71ddd97a2ad88 Mon Sep 17 00:00:00 2001 From: Philippus Date: Sun, 7 Apr 2019 12:43:16 +0200 Subject: [PATCH 1/2] Update version numbers --- build.sbt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.sbt b/build.sbt index 1840c2bd..1d4fcfb3 100644 --- a/build.sbt +++ b/build.sbt @@ -13,8 +13,8 @@ lazy val `scala-parser-combinators` = crossProject(JSPlatform, JVMPlatform, Nati jvmSettings(scalaModuleSettingsJVM). settings( name := "scala-parser-combinators", - version := "1.1.2-SNAPSHOT", - mimaPreviousVersion := Some("1.1.0").filter(_ => System.getenv("SCALAJS_VERSION") != "1.0.0-M7"), + version := "1.2.0-SNAPSHOT", + mimaPreviousVersion := Some("1.1.2").filter(_ => System.getenv("SCALAJS_VERSION") != "1.0.0-M7"), apiMappings += (scalaInstance.value.libraryJar -> url(s"https://www.scala-lang.org/api/${scalaVersion.value}/")), From 742b74cdb8232de407999b5d162a083c9d17d318 Mon Sep 17 00:00:00 2001 From: Philippus Date: Mon, 8 Apr 2019 22:18:24 +0200 Subject: [PATCH 2/2] Set `mimaPreviousVersion` to `None` --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index 1d4fcfb3..cae5f23f 100644 --- a/build.sbt +++ b/build.sbt @@ -14,7 +14,7 @@ lazy val `scala-parser-combinators` = crossProject(JSPlatform, JVMPlatform, Nati settings( name := "scala-parser-combinators", version := "1.2.0-SNAPSHOT", - mimaPreviousVersion := Some("1.1.2").filter(_ => System.getenv("SCALAJS_VERSION") != "1.0.0-M7"), + mimaPreviousVersion := None, apiMappings += (scalaInstance.value.libraryJar -> url(s"https://www.scala-lang.org/api/${scalaVersion.value}/")),