Skip to content

Commit

Permalink
Update kind-projector to 0.13.2
Browse files Browse the repository at this point in the history
  • Loading branch information
scala-steward authored and xuwei-k committed Sep 4, 2021
1 parent 16b7dc3 commit cd0ce4c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ Eff is published for Scala 2.12, 2.13 and 3. `eff` core is available for the JVM
libraryDependencies += "org.atnos" %% "eff" % "5.19.0"

// to write types like Reader[String, *]
addCompilerPlugin("org.typelevel" %% "kind-projector" % "0.13.1" cross CrossVersion.full)
addCompilerPlugin("org.typelevel" %% "kind-projector" % "0.13.2" cross CrossVersion.full)

// to get types like Reader[String, *] (with more than one type parameter) correctly inferred for scala 2.12.x
scalacOptions += "-Ypartial-unification"
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ lazy val commonSettings = Def.settings(
Nil
case _ =>
Seq(
compilerPlugin("org.typelevel" %% "kind-projector" % "0.13.1" cross CrossVersion.full)
compilerPlugin("org.typelevel" %% "kind-projector" % "0.13.2" cross CrossVersion.full)
)
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/test/scala/org/atnos/site/Installation.scala
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ You add `eff` as an sbt dependency:
libraryDependencies += "org.atnos" %% "eff" % "$version"

// to write types like Reader[String, *]
addCompilerPlugin("org.typelevel" %% "kind-projector" % "0.13.1" cross CrossVersion.full)
addCompilerPlugin("org.typelevel" %% "kind-projector" % "0.13.2" cross CrossVersion.full)
```

To get types like `Reader[String, *]` (with more than one type parameter) correctly inferred, you'll have to use the following compiler option
Expand Down

0 comments on commit cd0ce4c

Please sign in to comment.