Skip to content

Commit

Permalink
Bump dependecy versions
Browse files Browse the repository at this point in the history
  • Loading branch information
satabin committed May 13, 2024
1 parent 71a4b3b commit b456de8
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ jobs:

- name: Publish site
if: github.event_name != 'pull_request' && github.ref == 'refs/heads/main'
uses: peaceiris/actions-gh-pages@v3.9.3
uses: peaceiris/actions-gh-pages@v4.0.0
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: site/target/docs/site
Expand Down
6 changes: 4 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,12 @@ ThisBuild / startYear := Some(2024)
ThisBuild / licenses := Seq(License.Apache2)
ThisBuild / tlCiDependencyGraphJob := false

val Scala213 = "2.13.12"
val Scala213 = "2.13.14"
ThisBuild / crossScalaVersions := Seq(Scala213, "3.3.3")
ThisBuild / scalaVersion := Scala213

ThisBuild / tlSonatypeUseLegacyHost := true

lazy val root = tlCrossRootProject.aggregate(core, azureServiceBus, awsSQS, awsSqsIt, circe, otel4s, unidocs)

ThisBuild / tlSitePublishBranch := Some("main")
Expand Down Expand Up @@ -100,7 +102,7 @@ lazy val azureServiceBus = crossProject(JVMPlatform)
.settings(
name := "fs2-queues-azure-service-bus",
libraryDependencies ++= List(
"com.azure" % "azure-messaging-servicebus" % "7.15.1"
"com.azure" % "azure-messaging-servicebus" % "7.17.0"
)
)
.dependsOn(core, testkit % Test)
Expand Down
4 changes: 2 additions & 2 deletions project/Version.scala
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
object Versions {
val fs2 = "3.9.4"
val fs2 = "3.10.2"
val http4s = "0.23.25"
val munit = "0.7.29"
val munitCatsEffect = "1.0.7"
val circe = "0.14.6"
val circe = "0.14.7"
val circeGenericExtras = "0.14.3"
}
6 changes: 3 additions & 3 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
addSbtPlugin("org.typelevel" % "sbt-typelevel" % "0.6.7")
addSbtPlugin("org.typelevel" % "sbt-typelevel-site" % "0.6.7")
addSbtPlugin("org.typelevel" % "sbt-typelevel-scalafix" % "0.6.7")
addSbtPlugin("org.typelevel" % "sbt-typelevel" % "0.7.1")
addSbtPlugin("org.typelevel" % "sbt-typelevel-site" % "0.7.1")
addSbtPlugin("org.typelevel" % "sbt-typelevel-scalafix" % "0.7.1")
addSbtPlugin("org.scalameta" % "sbt-mdoc" % "2.5.2")

0 comments on commit b456de8

Please sign in to comment.