Skip to content

Commit f70cf2c

Browse files
authored
Merge pull request #472 from higherkindness/CE3
Update to cats-effect 3
2 parents 2f5cf42 + d0c1b76 commit f70cf2c

File tree

4 files changed

+7
-5
lines changed

4 files changed

+7
-5
lines changed

build.sbt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
ThisBuild / organization := "io.higherkindness"
22
ThisBuild / githubOrganization := "47degrees"
3-
ThisBuild / scalaVersion := "2.13.4"
4-
ThisBuild / crossScalaVersions := Seq("2.12.12", "2.13.2")
3+
ThisBuild / scalaVersion := "2.13.6"
4+
ThisBuild / crossScalaVersions := Seq("2.12.12", "2.13.6")
55

66
addCommandAlias("ci-test", "scalafmtCheckAll; scalafmtSbtCheck; microsite/mdoc; testCovered")
77
addCommandAlias("ci-docs", "github; documentation/mdoc; headerCreateAll; microsite/publishMicrosite")
@@ -52,7 +52,7 @@ lazy val commonSettings = Seq(
5252
scalacOptions ~= (_ filterNot Set("-Xfuture", "-Xfatal-warnings").contains),
5353
libraryDependencies ++= Seq(
5454
"org.typelevel" %% "cats-core" % "2.6.1",
55-
"org.typelevel" %% "cats-effect" % "2.5.1",
55+
"org.typelevel" %% "cats-effect" % "3.1.1",
5656
"io.higherkindness" %% "droste-core" % "0.8.0",
5757
"io.higherkindness" %% "droste-macros" % "0.8.0",
5858
"org.apache.avro" % "avro" % "1.10.2",
@@ -81,7 +81,7 @@ lazy val mdocSettings = Seq(
8181

8282
lazy val compilerPlugins = Seq(
8383
libraryDependencies ++= Seq(
84-
compilerPlugin("org.typelevel" % "kind-projector" % "0.11.2" cross CrossVersion.full),
84+
compilerPlugin("org.typelevel" % "kind-projector" % "0.13.0" cross CrossVersion.full),
8585
compilerPlugin("com.olegpy" %% "better-monadic-for" % "0.3.1")
8686
)
8787
)

microsite/docs/docs/index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -130,6 +130,7 @@ We can parse it, transform it into a Mu protocol and then convert it into Scala
130130

131131
```scala mdoc:silent
132132
import cats.effect.IO
133+
import cats.effect.unsafe.implicits.global
133134
import higherkindness.skeuomorph.mu
134135
import higherkindness.skeuomorph.mu.{CompressionType, MuF}
135136
import higherkindness.skeuomorph.protobuf._

project/build.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
sbt.version=1.4.8
1+
sbt.version=1.5.3

src/test/scala/higherkindness/skeuomorph/protobuf/ProtobufProtocolSpec.scala

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
package higherkindness.skeuomorph.protobuf
1818

1919
import cats.effect.IO
20+
import cats.effect.unsafe.implicits.global
2021
import higherkindness.droste.data.Mu
2122
import higherkindness.droste.data.Mu._
2223
import higherkindness.skeuomorph._

0 commit comments

Comments
 (0)