Skip to content

Commit

Permalink
Bump dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
julianpeeters committed Sep 26, 2023
1 parent a5cf653 commit 78d9d85
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
14 changes: 7 additions & 7 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
lazy val ApacheAvroV = "1.11.1"
lazy val ApacheAvroV = "1.11.3"
lazy val CatsEffectV = "3.5.1"
lazy val MUnitCEV = "1.0.7"
lazy val MUnitCEV = "2.0.0-M3"

inThisBuild(List(
crossScalaVersions := Seq(scalaVersion.value),
Expand All @@ -24,7 +24,7 @@ inThisBuild(List(
"-Wunused:all",
"-Wvalue-discard"
),
scalaVersion := "3.3.0",
scalaVersion := "3.3.1",
versionScheme := Some("semver-spec"),
))

Expand All @@ -33,10 +33,10 @@ lazy val schemabuilder4cats = (project in file("."))
name := "schemabuilder4cats",
libraryDependencies ++= Seq(
// main
"org.apache.avro" % "avro" % ApacheAvroV,
"org.typelevel" %% "cats-effect" % CatsEffectV,
"org.apache.avro" % "avro" % ApacheAvroV,
"org.typelevel" %% "cats-effect" % CatsEffectV,
// test
"org.typelevel" %% "munit-cats-effect-3" % MUnitCEV % Test,
"org.typelevel" %% "munit-cats-effect" % MUnitCEV % Test,
)
)

Expand All @@ -45,7 +45,7 @@ lazy val docs = project.in(file("docs/gitignored"))
mdocOut := schemabuilder4cats.base,
mdocVariables := Map(
"AVRO" -> ApacheAvroV,
"SCALA" -> crossScalaVersions.value.mkString(", "),
"SCALA" -> crossScalaVersions.value.map(e => e.takeWhile(_ != '.')).mkString(", "),
"VERSION" -> version.value.takeWhile(_ != '+'),
)
)
Expand Down
2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version=1.9.3
sbt.version=1.9.6
2 changes: 1 addition & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.5.12")
addSbtPlugin("org.scalameta" % "sbt-mdoc" % "2.3.7" )
addSbtPlugin("org.typelevel" % "sbt-typelevel-no-publish" % "0.5.0-RC10" )
addSbtPlugin("org.typelevel" % "sbt-typelevel-no-publish" % "0.5.1" )

0 comments on commit 78d9d85

Please sign in to comment.