Skip to content

Commit ce44793

Browse files
committed
Upgrade everything
1 parent 6cdadf5 commit ce44793

File tree

3 files changed

+19
-20
lines changed

3 files changed

+19
-20
lines changed

Diff for: .scalafmt.conf

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
runner.dialect = scala3
22
runner.dialectOverride.allowSignificantIndentation = false
3-
version = "3.7.2"
3+
version = "3.9.4"
44
maxColumn = 140
55
align.preset = some
6-
align.tokens.add = [
6+
align.tokens."+" = [
77
{code = "<-", owner = Enumerator.Generator}
88
]
99
align.multiline = true

Diff for: build.sbt

+12-13
Original file line numberDiff line numberDiff line change
@@ -49,11 +49,10 @@ def crossPlugin(
4949
x: sbt.librarymanagement.ModuleID
5050
) = compilerPlugin(x.cross(CrossVersion.full))
5151

52-
val addCompilerPlugins = libraryDependencies ++= {
52+
val addCompilerPlugins = libraryDependencies ++=
5353
List(
5454
crossPlugin("org.polyvariant" % "better-tostring" % "0.3.17")
5555
)
56-
}
5756

5857
val commonSettings = Seq(
5958
scalacOptions -= "-Xfatal-warnings",
@@ -63,9 +62,9 @@ val commonSettings = Seq(
6362
// "2000"
6463
),
6564
libraryDependencies ++= Seq(
66-
"org.typelevel" %%% "cats-effect" % "3.5.2",
67-
"org.scalameta" %%% "munit" % "1.0.0-M10" % Test,
68-
"org.typelevel" %%% "munit-cats-effect" % "2.0.0-M3" % Test
65+
"org.typelevel" %%% "cats-effect" % "3.5.7",
66+
"org.scalameta" %%% "munit" % "1.0.0" % Test,
67+
"org.typelevel" %%% "munit-cats-effect" % "2.0.0" % Test
6968
),
7069
addCompilerPlugins,
7170
Compile / doc / sources := Nil
@@ -123,14 +122,14 @@ val app = crossProject(JVMPlatform, NativePlatform)
123122
.settings(
124123
libraryDependencies ++= Seq(
125124
"com.disneystreaming.smithy4s" %%% "smithy4s-http4s" % smithy4sVersion.value,
126-
"org.typelevel" %%% "cats-mtl" % "1.3.1",
125+
"org.typelevel" %%% "cats-mtl" % "1.4.0",
127126
"com.monovore" %%% "decline-effect" % "2.4.1",
128-
"org.http4s" %%% "http4s-dsl" % "0.23.23",
129-
"org.http4s" %%% "http4s-ember-server" % "0.23.23",
130-
"org.http4s" %%% "http4s-ember-client" % "0.23.23",
131-
"org.http4s" %%% "http4s-circe" % "0.23.23",
132-
"io.circe" %%% "circe-parser" % "0.14.6",
133-
"org.typelevel" %%% "log4cats-noop" % "2.6.0",
127+
"org.http4s" %%% "http4s-dsl" % "0.23.30",
128+
"org.http4s" %%% "http4s-ember-server" % "0.23.30",
129+
"org.http4s" %%% "http4s-ember-client" % "0.23.30",
130+
"org.http4s" %%% "http4s-circe" % "0.23.30",
131+
"io.circe" %%% "circe-parser" % "0.14.8",
132+
"org.typelevel" %%% "log4cats-noop" % "2.7.0",
134133
"org.polyvariant" %%% "colorize" % "0.3.2"
135134
// waiting
136135
// "dev.optics" %%% "monocle-core" % "3.1.0"
@@ -147,7 +146,7 @@ val app = crossProject(JVMPlatform, NativePlatform)
147146
.jvmConfigure(
148147
_.settings(
149148
libraryDependencies ++= Seq(
150-
"ch.qos.logback" % "logback-classic" % "1.2.11"
149+
"ch.qos.logback" % "logback-classic" % "1.2.13"
151150
)
152151
).enablePlugins(JavaAppPackaging)
153152
)

Diff for: project/plugins.sbt

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.5.12")
2-
addSbtPlugin("org.typelevel" % "sbt-tpolecat" % "0.5.0")
3-
addSbtPlugin("com.github.sbt" % "sbt-native-packager" % "1.9.16")
1+
addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.9.3")
2+
addSbtPlugin("org.typelevel" % "sbt-tpolecat" % "0.5.2")
3+
addSbtPlugin("com.github.sbt" % "sbt-native-packager" % "1.11.1")
44

5-
addSbtPlugin("com.eed3si9n" % "sbt-buildinfo" % "0.11.0")
5+
addSbtPlugin("com.eed3si9n" % "sbt-buildinfo" % "0.13.1")
66
addSbtPlugin("com.github.sbt" % "sbt-github-actions" % "0.25.0")
77

8-
addSbtPlugin("com.disneystreaming.smithy4s" % "smithy4s-sbt-codegen" % "0.18.2")
8+
addSbtPlugin("com.disneystreaming.smithy4s" % "smithy4s-sbt-codegen" % "0.18.31")
99
addSbtPlugin("org.scala-native" % "sbt-scala-native" % "0.4.17")
1010
addSbtPlugin("org.portable-scala" % "sbt-scala-native-crossproject" % "1.3.2")
1111

0 commit comments

Comments
 (0)