Skip to content

Commit

Permalink
chore: changed introduced versions for native support
Browse files Browse the repository at this point in the history
  • Loading branch information
j-mie6 committed Feb 15, 2025
1 parent 0ad8428 commit dd15092
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,14 @@ lazy val parsley = crossProject(JSPlatform, JVMPlatform, NativePlatform)
// JS lacks the IO module, so has its own rootdoc
Compile / doc / scalacOptions ++= Seq("-doc-root-content", s"${baseDirectory.value.getPath}/rootdoc.md"),
)
// 4.6.0 bumped to 0.5, which means the old versions are unfindable
.nativeSettings(
tlVersionIntroduced := Map(
"2.13" -> "4.6.0",
"2.12" -> "4.6.0",
"3" -> "4.6.0",
),
)

lazy val docs = project
.in(file("site"))
Expand Down Expand Up @@ -118,6 +126,14 @@ lazy val parsleyDebug = crossProject(JSPlatform, JVMPlatform, NativePlatform)
}
}
)
// 4.6.0 bumped to 0.5, which means the old versions are unfindable
.nativeSettings(
tlVersionIntroduced := Map(
"2.13" -> "4.6.0",
"2.12" -> "4.6.0",
"3" -> "4.6.0",
),
)

def testCoverageJob(cacheSteps: List[WorkflowStep]) = WorkflowJob(
id = "coverage",
Expand Down

0 comments on commit dd15092

Please sign in to comment.