File tree Expand file tree Collapse file tree 4 files changed +18
-5
lines changed Expand file tree Collapse file tree 4 files changed +18
-5
lines changed Original file line number Diff line number Diff line change 11lazy val scala212 = " 2.12.20"
2- lazy val scala3 = " 3.3.6 "
2+ lazy val scala3 = " 3.7.2 "
33
44inThisBuild(
55 List (
@@ -37,11 +37,11 @@ lazy val plugin = project
3737 (pluginCrossBuild / sbtVersion) := {
3838 scalaBinaryVersion.value match {
3939 case " 2.12" => " 1.5.8"
40- case _ => " 2.0.0-M2 "
40+ case _ => " 2.0.0-RC3 "
4141 }
4242 },
4343 libraryDependencies += " org.scalameta" %% " munit" % " 1.0.3" % Test ,
44- addSbtPlugin(" com.github.sbt" % " sbt-dynver" % " 5.1.0 " ),
44+ addSbtPlugin(" com.github.sbt" % " sbt-dynver" % " 5.1.1 " ),
4545 addSbtPlugin(" com.github.sbt" % " sbt-git" % " 2.1.0" ),
4646 addSbtPlugin(" com.github.sbt" % " sbt-pgp" % " 2.3.1" )
4747 )
Original file line number Diff line number Diff line change 1+ package com .geirsson
2+
3+ import sbt .*
4+
5+ object PluginCompat {
6+ implicit class DefOp (singleton : Def .type ) {
7+ def uncached [A1 ](a : A1 ): A1 = a
8+ }
9+ }
Original file line number Diff line number Diff line change 1+ package com .geirsson
2+
3+ object PluginCompat
Original file line number Diff line number Diff line change 11package com .geirsson
22
33import com .geirsson .PipeFail .PipeFailOps
4+ import PluginCompat .*
45import com .github .sbt .git .GitPlugin
56import com .github .sbt .git .SbtGit .GitKeys
67import com .jsuereth .sbtpgp .SbtPgp
@@ -217,9 +218,9 @@ object CiReleasePlugin extends AutoPlugin {
217218 override lazy val projectSettings : Seq [Def .Setting [_]] = List (
218219 version := (ThisBuild / version).value,
219220 publishConfiguration :=
220- publishConfiguration.value.withOverwrite(true ),
221+ Def .uncached( publishConfiguration.value.withOverwrite(true ) ),
221222 publishLocalConfiguration :=
222- publishLocalConfiguration.value.withOverwrite(true ),
223+ Def .uncached( publishLocalConfiguration.value.withOverwrite(true ) ),
223224 publishTo := {
224225 val orig = (ThisBuild / publishTo).value
225226 (orig, localStaging.? .value) match {
You can’t perform that action at this time.
0 commit comments