Skip to content

Commit

Permalink
Merge branch 'main' into update/scala3-library-3.3.4
Browse files Browse the repository at this point in the history
  • Loading branch information
pvlugter authored Jan 13, 2025
2 parents 091e066 + cf6d4a1 commit 208c68c
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 5 deletions.
14 changes: 14 additions & 0 deletions .scala-steward.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
pullRequests.frequency = "@monthly"
commits.message = "bump: ${artifactName} ${nextVersion} (was ${currentVersion})"

updates.pin = [
{ groupId = "org.scalatest", artifactId = "scalatest", version = "3.2." }
]

updates.ignore = [
{ groupId = "com.typesafe.akka" },
{ groupId = "org.scalameta", artifactId = "sbt-scalafmt" },
{ groupId = "org.scalameta", artifactId = "scalafmt-core" }
]

updatePullRequests = false
4 changes: 2 additions & 2 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import sbt._

object Dependencies {
val Scala213 = "2.13.13"
val Scala213 = "2.13.15"
val Scala3 = "3.3.4"
val Scala2Versions = Seq(Scala213)
val ScalaVersions = Dependencies.Scala2Versions :+ Dependencies.Scala3
Expand Down Expand Up @@ -41,7 +41,7 @@ object Dependencies {
val akkaStreamTestkit = "com.typesafe.akka" %% "akka-stream-testkit" % AkkaVersion % Test
val akkaJackson = "com.typesafe.akka" %% "akka-serialization-jackson" % AkkaVersion % Test

val logback = "ch.qos.logback" % "logback-classic" % "1.5.8" % Test // EPL 1.0 / LGPL 2.1
val logback = "ch.qos.logback" % "logback-classic" % "1.5.16" % Test // EPL 1.0 / LGPL 2.1
val scalaTest = "org.scalatest" %% "scalatest" % "3.2.12" % Test // ApacheV2
val junit = "junit" % "junit" % "4.12" % Test // Eclipse Public License 1.0
val junitInterface = "com.novocode" % "junit-interface" % "0.11" % Test // "BSD 2-Clause"
Expand Down
6 changes: 3 additions & 3 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ addSbtPlugin("com.lightbend.sbt" % "sbt-java-formatter" % "0.8.0")
addDependencyTreePlugin

// for releasing
addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.5.12")
addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.9.2")

//// docs
addSbtPlugin("com.lightbend.paradox" % "sbt-paradox-dependencies" % "0.2.4")
addSbtPlugin("io.akka" % "sbt-paradox-akka" % "24.10.4")
addSbtPlugin("io.akka" % "sbt-paradox-akka" % "24.10.6")
addSbtPlugin("com.lightbend.sbt" % "sbt-publish-rsync" % "0.3")
addSbtPlugin("com.github.sbt" % "sbt-unidoc" % "0.5.0")
addSbtPlugin("com.github.sbt" % "sbt-site-paradox" % "1.7.0")

addSbtPlugin("com.typesafe" % "sbt-mima-plugin" % "1.1.3")
addSbtPlugin("com.typesafe" % "sbt-mima-plugin" % "1.1.4")

0 comments on commit 208c68c

Please sign in to comment.