Skip to content

Commit

Permalink
Merge pull request #472 from higherkindness/CE3
Browse files Browse the repository at this point in the history
Update to cats-effect 3
  • Loading branch information
Daenyth committed Jun 14, 2021
2 parents 2f5cf42 + d0c1b76 commit f70cf2c
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
8 changes: 4 additions & 4 deletions build.sbt
@@ -1,7 +1,7 @@
ThisBuild / organization := "io.higherkindness"
ThisBuild / githubOrganization := "47degrees"
ThisBuild / scalaVersion := "2.13.4"
ThisBuild / crossScalaVersions := Seq("2.12.12", "2.13.2")
ThisBuild / scalaVersion := "2.13.6"
ThisBuild / crossScalaVersions := Seq("2.12.12", "2.13.6")

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

lazy val compilerPlugins = Seq(
libraryDependencies ++= Seq(
compilerPlugin("org.typelevel" % "kind-projector" % "0.11.2" cross CrossVersion.full),
compilerPlugin("org.typelevel" % "kind-projector" % "0.13.0" cross CrossVersion.full),
compilerPlugin("com.olegpy" %% "better-monadic-for" % "0.3.1")
)
)
Expand Down
1 change: 1 addition & 0 deletions microsite/docs/docs/index.md
Expand Up @@ -130,6 +130,7 @@ We can parse it, transform it into a Mu protocol and then convert it into Scala

```scala mdoc:silent
import cats.effect.IO
import cats.effect.unsafe.implicits.global
import higherkindness.skeuomorph.mu
import higherkindness.skeuomorph.mu.{CompressionType, MuF}
import higherkindness.skeuomorph.protobuf._
Expand Down
2 changes: 1 addition & 1 deletion project/build.properties
@@ -1 +1 @@
sbt.version=1.4.8
sbt.version=1.5.3
Expand Up @@ -17,6 +17,7 @@
package higherkindness.skeuomorph.protobuf

import cats.effect.IO
import cats.effect.unsafe.implicits.global
import higherkindness.droste.data.Mu
import higherkindness.droste.data.Mu._
import higherkindness.skeuomorph._
Expand Down

0 comments on commit f70cf2c

Please sign in to comment.