Skip to content

Commit dd15092

Browse files
committed
chore: changed introduced versions for native support
1 parent 0ad8428 commit dd15092

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

build.sbt

+16
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,14 @@ lazy val parsley = crossProject(JSPlatform, JVMPlatform, NativePlatform)
7676
// JS lacks the IO module, so has its own rootdoc
7777
Compile / doc / scalacOptions ++= Seq("-doc-root-content", s"${baseDirectory.value.getPath}/rootdoc.md"),
7878
)
79+
// 4.6.0 bumped to 0.5, which means the old versions are unfindable
80+
.nativeSettings(
81+
tlVersionIntroduced := Map(
82+
"2.13" -> "4.6.0",
83+
"2.12" -> "4.6.0",
84+
"3" -> "4.6.0",
85+
),
86+
)
7987

8088
lazy val docs = project
8189
.in(file("site"))
@@ -118,6 +126,14 @@ lazy val parsleyDebug = crossProject(JSPlatform, JVMPlatform, NativePlatform)
118126
}
119127
}
120128
)
129+
// 4.6.0 bumped to 0.5, which means the old versions are unfindable
130+
.nativeSettings(
131+
tlVersionIntroduced := Map(
132+
"2.13" -> "4.6.0",
133+
"2.12" -> "4.6.0",
134+
"3" -> "4.6.0",
135+
),
136+
)
121137

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

0 commit comments

Comments
 (0)