From 49aef188d597f6ac89d5be2dc82bba7f936a5e81 Mon Sep 17 00:00:00 2001 From: Scala Date: Sun, 23 Jun 2019 17:43:11 +0200 Subject: [PATCH] Update cats-core to 1.6.1 --- build.sbt | 2 +- src/main/scala/cats_1_0_0.scala | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/build.sbt b/build.sbt index 3ed6ff1..9f15925 100644 --- a/build.sbt +++ b/build.sbt @@ -4,7 +4,7 @@ libraryDependencies := List( //"co.fs2" %% "fs2-core" % "0.10.7", //"org.http4s" %% "http4s-core" % "0.18.24", //"org.http4s" %% "http4s-dsl" % "0.18.24", - "org.typelevel" %% "cats-core" % "0.9.0", + "org.typelevel" %% "cats-core" % "1.6.1", "com.spotify" %% "scio-core" % "0.6.1", "com.spotify" %% "scio-test" % "0.6.1", "com.spotify" %% "scio-bigquery" % "0.6.1" diff --git a/src/main/scala/cats_1_0_0.scala b/src/main/scala/cats_1_0_0.scala index fa7f02e..bdc5f7f 100644 --- a/src/main/scala/cats_1_0_0.scala +++ b/src/main/scala/cats_1_0_0.scala @@ -2,6 +2,6 @@ import cats.implicits._ object cats_1_0_0 { - (Option(1) |@| Option(2) |@| Option(3)).map(_ + _ + _) + (Option(1), Option(2), Option(3)).mapN(_ + _ + _) }