Skip to content

Commit

Permalink
Bumping deps, mainly for SN 0.5 (#5)
Browse files Browse the repository at this point in the history
* Bumping deps, mainly for SN 0.5

* Updating ci.yml
  • Loading branch information
luksow authored Oct 7, 2024
1 parent eb352fd commit c0619b2
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 17 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,10 @@ jobs:
runs-on: ${{ matrix.os }}
timeout-minutes: 60
steps:
- name: Install sbt
if: contains(runner.os, 'macos')
run: brew install sbt

- name: Checkout current branch (full)
uses: actions/checkout@v4
with:
Expand Down Expand Up @@ -117,6 +121,10 @@ jobs:
java: [temurin@11]
runs-on: ${{ matrix.os }}
steps:
- name: Install sbt
if: contains(runner.os, 'macos')
run: brew install sbt

- name: Checkout current branch (full)
uses: actions/checkout@v4
with:
Expand Down Expand Up @@ -241,6 +249,10 @@ jobs:
java: [temurin@11]
runs-on: ${{ matrix.os }}
steps:
- name: Install sbt
if: contains(runner.os, 'macos')
run: brew install sbt

- name: Checkout current branch (full)
uses: actions/checkout@v4
with:
Expand Down
26 changes: 13 additions & 13 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
val scala_2_13 = "2.13.14"
val scala_3 = "3.3.3"
val scala_2_13 = "2.13.15"
val scala_3 = "3.3.4"
val mainScalaVersion = scala_3
val supportedScalaVersions = Seq(scala_2_13, scala_3)

Expand Down Expand Up @@ -54,20 +54,20 @@ lazy val baseSettings = Seq(
scalafmtOnCompile := true)

val http4s = Seq(
"org.http4s" %% "http4s-dsl" % "0.23.27",
"org.http4s" %% "http4s-ember-server" % "0.23.27")
"org.http4s" %% "http4s-dsl" % "0.23.28",
"org.http4s" %% "http4s-ember-server" % "0.23.28")

val http4sClient = Seq(
"org.http4s" %% "http4s-ember-client" % "0.23.27")
"org.http4s" %% "http4s-ember-client" % "0.23.28")

val circe = Seq(
"io.circe" %% "circe-core" % "0.14.9",
"io.circe" %% "circe-generic" % "0.14.9",
"io.circe" %% "circe-parser" % "0.14.9",
"org.http4s" %% "http4s-circe" % "0.23.27")
"io.circe" %% "circe-core" % "0.14.10",
"io.circe" %% "circe-generic" % "0.14.10",
"io.circe" %% "circe-parser" % "0.14.10",
"org.http4s" %% "http4s-circe" % "0.23.28")

val logback = Seq(
"ch.qos.logback" % "logback-classic" % "1.5.6")
"ch.qos.logback" % "logback-classic" % "1.5.8")

lazy val core = crossProject(JSPlatform, JVMPlatform, NativePlatform)
.withoutSuffixFor(JVMPlatform)
Expand All @@ -87,7 +87,7 @@ lazy val coreTests = project
name := "http4s-stir-tests",
libraryDependencies ++= http4s ++ circe ++ Seq(
"org.scalatest" %% "scalatest" % "3.2.19" % Test,
"org.specs2" %% "specs2-core" % "4.20.7" % Test)).dependsOn(
"org.specs2" %% "specs2-core" % "4.20.8" % Test)).dependsOn(
testkit.jvm % "test",
core.jvm % "test->test")

Expand All @@ -100,7 +100,7 @@ lazy val testkit = crossProject(JSPlatform, JVMPlatform, NativePlatform)
name := "http4s-stir-testkit",
libraryDependencies ++= http4s ++ http4sClient ++ Seq(
"org.scalatest" %% "scalatest" % "3.2.19" % "provided",
"org.specs2" %% "specs2-core" % "4.20.7" % "provided")).dependsOn(core)
"org.specs2" %% "specs2-core" % "4.20.8" % "provided")).dependsOn(core)

lazy val examples = project
.in(file("examples"))
Expand All @@ -109,7 +109,7 @@ lazy val examples = project
.settings(
name := "http4s-stir-examples",
libraryDependencies ++= http4s ++ circe ++ logback ++ Seq(
"org.specs2" %% "specs2-core" % "4.20.7" % Test,
"org.specs2" %% "specs2-core" % "4.20.8" % Test,
"org.scalatest" %% "scalatest" % "3.2.19" % Test))
.dependsOn(core.jvm, testkit.jvm % Test)

Expand Down
8 changes: 4 additions & 4 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.4.6")

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

addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.16.0")
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.17.0")
addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "1.3.2")
addSbtPlugin("org.portable-scala" % "sbt-scala-native-crossproject" % "1.3.2")
addSbtPlugin("org.scala-native" % "sbt-scala-native" % "0.4.17")
addSbtPlugin("org.typelevel" % "sbt-typelevel-ci-release" % "0.7.1")
addSbtPlugin("org.jmotor.sbt" % "sbt-dependency-updates" % "1.2.9")
addSbtPlugin("org.scala-native" % "sbt-scala-native" % "0.5.5")
addSbtPlugin("org.typelevel" % "sbt-typelevel-ci-release" % "0.7.2")
addSbtPlugin("org.jmotor.sbt" % "sbt-dependency-updates" % "1.2.9")

0 comments on commit c0619b2

Please sign in to comment.