Skip to content

Commit

Permalink
Updates
Browse files Browse the repository at this point in the history
Fixed examples
  • Loading branch information
zarthross committed Jul 25, 2024
1 parent 4a7d618 commit 03e00c0
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
10 changes: 5 additions & 5 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@ ThisBuild / tlCiReleaseBranches := Seq("main")
ThisBuild / tlSonatypeUseLegacyHost := true


val catsV = "2.9.0"
val catsEffectV = "3.4.8"
val fs2V = "3.6.1"
val circeV = "0.14.5"
val catsV = "2.11.0"
val catsEffectV = "3.4.11"
val fs2V = "3.10.2"
val circeV = "0.14.8"

ThisBuild / testFrameworks += new TestFramework("munit.Framework")

ThisBuild / crossScalaVersions := Seq("2.12.17", "2.13.10", "3.2.2")
ThisBuild / crossScalaVersions := Seq("2.12.19", "2.13.14", "3.3.3")

// Projects
lazy val `rediculous-concurrent` = tlCrossRootProject
Expand Down
2 changes: 1 addition & 1 deletion examples/src/main/scala/HttpCircuiting.scala
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ object HttpCircuiting extends ResourceApp.Simple {
def run: Resource[IO, Unit] = for {
connection <- RedisConnection.queued[IO].withHost(host"localhost").withPort(port"6379").build
automaticallyCircuitedClient <- EmberClientBuilder.default[IO].build
.map(RedisCircuitedClient(connection)(_))
.map(RedisCircuitedClient[IO](connection)(_))
} yield ()


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.8.2
sbt.version=1.10.1
6 changes: 3 additions & 3 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
addSbtPlugin("org.typelevel" % "sbt-typelevel-ci-release" % "0.7.2")
addSbtPlugin("org.typelevel" % "sbt-typelevel-site" % "0.7.2")
addSbtPlugin("org.typelevel" % "sbt-typelevel-settings" % "0.7.2")
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.13.1")
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.16.0")
addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "1.3.0")
addSbtPlugin("org.scala-native" % "sbt-scala-native" % "0.4.12")
addSbtPlugin("org.scala-native" % "sbt-scala-native" % "0.4.17")
addSbtPlugin("org.portable-scala" % "sbt-scala-native-crossproject" % "1.3.0")
addSbtPlugin("com.armanbilge" % "sbt-scala-native-config-brew-github-actions" % "0.1.3")
addSbtPlugin("com.armanbilge" % "sbt-scala-native-config-brew-github-actions" % "0.1.3")

0 comments on commit 03e00c0

Please sign in to comment.