Skip to content

Commit

Permalink
Set simulacrum version to 0.11.0 (#1865)
Browse files Browse the repository at this point in the history
  • Loading branch information
Alistair-Johnson authored and kailuowang committed Aug 30, 2017
1 parent 14d9c10 commit 8bca114
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ lazy val commonSettings = Seq(
Resolver.sonatypeRepo("snapshots")
),
libraryDependencies ++= Seq(
"com.github.mpilquist" %%% "simulacrum" % "0.10.0" % "compile-time",
"com.github.mpilquist" %%% "simulacrum" % "0.11.0" % "compile-time",
"org.typelevel" %%% "machinist" % "0.6.2",
compilerPlugin("org.scalamacros" %% "paradise" % "2.1.0" cross CrossVersion.patch),
compilerPlugin("org.spire-math" %% "kind-projector" % "0.9.4")
Expand Down
2 changes: 2 additions & 0 deletions core/src/main/scala/cats/syntax/apply.scala
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ package syntax
trait ApplySyntax extends TupleCartesianSyntax {
implicit final def catsSyntaxApply[F[_], A](fa: F[A])(implicit F: Apply[F]): Apply.Ops[F, A] =
new Apply.Ops[F, A] {
type TypeClassType = Apply[F]

val self = fa
val typeClassInstance = F
}
Expand Down
2 changes: 2 additions & 0 deletions core/src/main/scala/cats/syntax/cartesian.scala
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ package syntax
trait CartesianSyntax {
implicit final def catsSyntaxCartesian[F[_], A](fa: F[A])(implicit F: Cartesian[F]): CartesianOps[F, A] =
new CartesianOps[F, A] {
type TypeClassType = Cartesian[F]

val self = fa
val typeClassInstance = F
}
Expand Down

0 comments on commit 8bca114

Please sign in to comment.