Skip to content

Commit

Permalink
downgrade ce version
Browse files Browse the repository at this point in the history
  • Loading branch information
grzegorz-bielski committed Nov 3, 2023
1 parent 5310af9 commit 95c965e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import com.evolutiongaming.skafka.{Bytes, Partition, ToBytes, TopicPartition}
import play.api.libs.json.{JsString, Json}
import org.scalatest.funsuite.AnyFunSuite
import org.scalatest.matchers.should.Matchers
import scala.util.Try
import scala.util.{Try, Success}

class JsonProducerSpec extends AnyFunSuite with Matchers {
test("apply") {
Expand All @@ -23,7 +23,7 @@ class JsonProducerSpec extends AnyFunSuite with Matchers {
val value = record.value.flatMap(toBytesV(_, topic).toOption)
val key = record.key.flatMap(toBytesK(_, topic).toOption)
actual = Some((key, value))
Try(Try(metadata))
Success(Success(metadata))
}
}
val producer = JsonProducer(send)
Expand Down
2 changes: 1 addition & 1 deletion project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ object Dependencies {
}

object CatsEffect {
private val version = "3.5.2"
private val version = "3.4.8"
val effect = "org.typelevel" %% "cats-effect" % version
val effectStd = "org.typelevel" %% "cats-effect-std" % version
}
Expand Down

0 comments on commit 95c965e

Please sign in to comment.