We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent efd66f0 commit 15ccdc7Copy full SHA for 15ccdc7
build.sbt
@@ -205,8 +205,9 @@ def previousArtifact(version: String, proj: String) = {
205
val regex = "0\\.([0-9]+)\\.[0-9]+(-SNAPSHOT|-dbuild[a-z0-9]*|\\+.*)?".r
206
version match {
207
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}")
+ case regex("2", _) => Set("org.typelevel" %% s"paiges-$proj" % "0.2.0")
+ case regex("3", _) => Set.empty[ModuleID]
210
+ case _ => throw new RuntimeException(s"Unexpected paiges version: ${version}")
211
}
212
213
0 commit comments