From 3e2e70bb55ccf558110759f753dadc8242e2dbad Mon Sep 17 00:00:00 2001 From: Marcin Jakubowski Date: Sun, 2 Apr 2023 19:44:40 +0200 Subject: [PATCH] minor dependency upgrades --- build.sbt | 8 ++++---- project/DependecyVersions.scala | 14 +++++++------- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/build.sbt b/build.sbt index ea9e9bb5..f3962d50 100644 --- a/build.sbt +++ b/build.sbt @@ -10,8 +10,8 @@ lazy val three = "3.2.1" lazy val supportedScalaVersions = Seq(twoTwelve, twoThirteen, three) ThisBuild / organization := "com.github.mjakubowski84" -ThisBuild / version := "2.11.0-SNAPSHOT" -ThisBuild / isSnapshot := true +ThisBuild / version := "2.10.1" +ThisBuild / isSnapshot := false ThisBuild / scalaVersion := twoThirteen ThisBuild / javacOptions ++= Seq("-source", "1.8", "-target", "1.8") @@ -182,7 +182,7 @@ lazy val examples = (project in file("examples")) libraryDependencies ++= Seq( "org.apache.hadoop" % "hadoop-client" % hadoopVersion, "org.apache.parquet" % "parquet-protobuf" % parquetVersion, - "io.github.embeddedkafka" %% "embedded-kafka" % "3.3.1", + "io.github.embeddedkafka" %% "embedded-kafka" % "3.4.0", "ch.qos.logback" % "logback-classic" % logbackVersion, "org.slf4j" % "log4j-over-slf4j" % slf4jVersion, "com.typesafe.akka" %% "akka-stream-kafka" % { @@ -271,7 +271,7 @@ lazy val documentation = (project in file("site")) .settings( publish / skip := true, libraryDependencies ++= Seq( - "org.scalameta" %% "mdoc" % "2.3.6", + "org.scalameta" %% "mdoc" % "2.3.7", "org.apache.hadoop" % "hadoop-client" % hadoopVersion, "org.slf4j" % "slf4j-nop" % slf4jVersion, "org.slf4j" % "log4j-over-slf4j" % slf4jVersion diff --git a/project/DependecyVersions.scala b/project/DependecyVersions.scala index 231a65bc..e0bc20fd 100644 --- a/project/DependecyVersions.scala +++ b/project/DependecyVersions.scala @@ -1,14 +1,14 @@ object DependecyVersions { val parquetVersion = "1.12.3" val shapelessVersion = "2.3.10" - val sparkVersion = "3.3.1" - val hadoopVersion = "3.3.4" - val slf4jVersion = "2.0.5" - val logbackVersion = "1.3.5" // stick to 1.3.x for JDK-8 compatibility + val sparkVersion = "3.3.2" + val hadoopVersion = "3.3.5" + val slf4jVersion = "2.0.7" + val logbackVersion = "1.3.6" // stick to 1.3.x for JDK-8 compatibility val akkaVersion = "2.6.20" // non-licensed version - val fs2Version = "3.5.0" - val catsEffectVersion = "3.4.5" + val fs2Version = "3.6.1" + val catsEffectVersion = "3.4.8" val scalaCollectionCompatVersion = "2.9.0" val scalatestVersion = "3.2.15" - val mockitoVersion = "4.11.0" + val mockitoVersion = "4.11.0" // stick to 4.x for JDK-8 compatibility }