Skip to content

Commit 15ccdc7

Browse files
committed
Fix build for 0.3.x.
1 parent efd66f0 commit 15ccdc7

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

build.sbt

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -205,8 +205,9 @@ def previousArtifact(version: String, proj: String) = {
205205
val regex = "0\\.([0-9]+)\\.[0-9]+(-SNAPSHOT|-dbuild[a-z0-9]*|\\+.*)?".r
206206
version match {
207207
case regex("1", _) => Set("org.typelevel" %% s"paiges-$proj" % "0.1.0")
208-
case regex("2", _) => Set.empty[ModuleID]
209-
case _ => throw new RuntimeException(s"Unexpected version: ${version}")
208+
case regex("2", _) => Set("org.typelevel" %% s"paiges-$proj" % "0.2.0")
209+
case regex("3", _) => Set.empty[ModuleID]
210+
case _ => throw new RuntimeException(s"Unexpected paiges version: ${version}")
210211
}
211212
}
212213

0 commit comments

Comments
 (0)