From d160eff200da660132b3f7e20918f16c1afe6a6b Mon Sep 17 00:00:00 2001 From: Jeremy Smith Date: Mon, 27 Nov 2017 06:18:01 -0800 Subject: [PATCH] Update cats to 1.0.0-RC1 --- build.sbt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.sbt b/build.sbt index 565a299..4025a11 100644 --- a/build.sbt +++ b/build.sbt @@ -14,7 +14,7 @@ lazy val buildSettings = Seq( val finagleVersion = "6.44.0" val shapelessVersion = "2.3.2" -val catsVersion = "0.9.0" +val catsVersion = "1.0.0-RC1" lazy val docSettings = Seq( autoAPIMappings := true @@ -24,7 +24,7 @@ lazy val baseSettings = docSettings ++ Seq( libraryDependencies ++= Seq( "com.twitter" %% "finagle-http" % finagleVersion, "com.chuusai" %% "shapeless" % shapelessVersion, - "org.typelevel" %% "cats" % catsVersion, + "org.typelevel" %% "cats-core" % catsVersion, "org.scalamock" %% "scalamock-scalatest-support" % "3.6.0" % "test", "org.scalatest" %% "scalatest" % "3.0.3" % "test" ),