From dd150923a89da299a4a7eebcee7d6c8ce62696a3 Mon Sep 17 00:00:00 2001 From: Jamie Willis Date: Sat, 15 Feb 2025 17:33:18 +0000 Subject: [PATCH] chore: changed introduced versions for native support --- build.sbt | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/build.sbt b/build.sbt index 321f4d032..83b596e13 100644 --- a/build.sbt +++ b/build.sbt @@ -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")) @@ -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",