diff --git a/.github/workflows/release-expression-compiler.yml b/.github/workflows/release-expression-compiler.yml index 4f1020101..5a539f393 100644 --- a/.github/workflows/release-expression-compiler.yml +++ b/.github/workflows/release-expression-compiler.yml @@ -49,21 +49,21 @@ jobs: VERSION='${{ inputs.scala-version }}' if [[ $VERSION == 2.12.* ]]; then echo "Using 2.12 publish task" - sbt 'expressionCompiler212/publishSigned;sonatypeBundleRelease' + sbt 'expressionCompiler212/publishSigned;sonaBundle' elif [[ $VERSION == 2.13.* ]]; then echo "Using 2.13 publish task" - sbt 'expressionCompiler213/publishSigned;sonatypeBundleRelease' + sbt 'expressionCompiler213/publishSigned;sonaBundle' elif [[ $VERSION == 3.0.* ]]; then echo "Using 3.0 publish task" - sbt 'expressionCompiler30/publishSigned;sonatypeBundleRelease' + sbt 'expressionCompiler30/publishSigned;sonaBundle' elif [[ $VERSION == 3.1.* || $VERSION == 3.2.* || $VERSION == 3.3.* ]]; then echo "Using 3.1+ publish task" - sbt 'expressionCompiler31Plus/publishSigned;sonatypeBundleRelease' + sbt 'expressionCompiler31Plus/publishSigned;sonaBundle' elif [[ $VERSION == 3.* ]]; then echo "Using 3.4+ publish task" - sbt 'expressionCompiler34Plus/publishSigned;sonatypeBundleRelease' + sbt 'expressionCompiler34Plus/publishSigned;sonaBundle' fi diff --git a/build.sbt b/build.sbt index a8361e07c..9a37bbc47 100644 --- a/build.sbt +++ b/build.sbt @@ -170,7 +170,7 @@ lazy val expressionCompiler = projectMatrix case (2, 13, _) => Seq("2.13.16", "2.13.15", "2.13.14", "2.13.13", "2.13.12", "2.13.11", "2.13.10", "2.13.9", "2.13.8", "2.13.7", "2.13.6", "2.13.5", "2.13.4") case (3, 0, _) => Seq("3.0.2", "3.0.1", "3.0.0") case (3, 1 | 2 | 3, _) => Seq("3.3.6", "3.3.5", "3.3.4", "3.3.3", "3.3.2", "3.3.1", "3.3.0", "3.2.2", "3.2.1", "3.2.0", "3.1.3", "3.1.2", "3.1.1", "3.1.0") - case (3, _, _) => Seq("3.7.1", "3.7.0", "3.6.4", "3.6.3", "3.6.2", "3.6.1", "3.5.2", "3.5.1", "3.5.0", "3.4.3", "3.4.2", "3.4.1", "3.4.0") + case (3, _, _) => Seq("3.7.2", "3.7.1", "3.7.0", "3.6.4", "3.6.3", "3.6.2", "3.6.1", "3.5.2", "3.5.1", "3.5.0", "3.4.3", "3.4.2", "3.4.1", "3.4.0") case _ => Seq.empty // format: on } diff --git a/project/Dependencies.scala b/project/Dependencies.scala index 1547ea774..540464893 100644 --- a/project/Dependencies.scala +++ b/project/Dependencies.scala @@ -6,7 +6,7 @@ object Dependencies { val scala213 = scalaEnvVersion.filter(isScala213).getOrElse("2.13.16") val scala30 = scalaEnvVersion.filter(isScala30).getOrElse("3.0.2") val scala31Plus = scalaEnvVersion.filter(isScala31Plus).getOrElse("3.3.6") - val scala34Plus = scalaEnvVersion.filter(isScala34Plus).getOrElse("3.7.1") + val scala34Plus = scalaEnvVersion.filter(isScala34Plus).getOrElse("3.7.2") val asmVersion = "9.8" val coursierVersion = "2.1.24"