From 4998536f9ea2aa82d6f9ce2873e67222eabb3930 Mon Sep 17 00:00:00 2001 From: "Jeffrey N. Davis" Date: Tue, 10 May 2016 13:52:09 -0500 Subject: [PATCH 1/2] Bumped finagle version from 6.34.0 to 6.35.0 --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index 164c78e..b43b315 100644 --- a/build.sbt +++ b/build.sbt @@ -59,7 +59,7 @@ lazy val coreVersion = "0.0.2" lazy val catsVersion = "0.4.1" -lazy val finagleVersion = "6.34.0" +lazy val finagleVersion = "6.35.0" lazy val nettyVersion = "4.0.36.Final" From 9b4454399187e01187022e2875a46ce2c7f2fbe2 Mon Sep 17 00:00:00 2001 From: "Jeffrey N. Davis" Date: Tue, 10 May 2016 13:59:23 -0500 Subject: [PATCH 2/2] Bumped library versions. cats 0.4.1 -> 0.5.0 specs2 3.7 -> 3.8, test only --- build.sbt | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/build.sbt b/build.sbt index b43b315..e130883 100644 --- a/build.sbt +++ b/build.sbt @@ -24,15 +24,15 @@ lazy val compilerOptions = Seq( "-Xfuture" ) -lazy val specs2Version = "3.7" +lazy val specs2Version = "3.8" lazy val testDependencies = Seq( "org.specs2" %% "specs2-core" % specs2Version, "org.specs2" %% "specs2-scalacheck" % specs2Version, "org.specs2" %% "specs2-junit" % specs2Version, "org.specs2" %% "specs2-mock" % specs2Version, - "io.circe" %% "circe-core" % "0.4.1", - "io.circe" %% "circe-generic" % "0.4.1", + "io.circe" %% "circe-core" % circeVersion, + "io.circe" %% "circe-generic" % circeVersion, "io.netty" % "netty-buffer" % nettyVersion ) @@ -57,12 +57,16 @@ lazy val allSettings = buildSettings ++ baseSettings lazy val coreVersion = "0.0.2" -lazy val catsVersion = "0.4.1" +lazy val catsVersion = "0.5.0" lazy val finagleVersion = "6.35.0" lazy val nettyVersion = "4.0.36.Final" +lazy val circeVersion = "0.4.1" + +lazy val jawnVersion = "0.8.4" + lazy val roc = project.in(file(".")) .settings(moduleName := "root") .settings(allSettings) @@ -79,7 +83,6 @@ lazy val core = project .settings( libraryDependencies ++= Seq( "org.typelevel" %% "cats" % catsVersion, - "org.spire-math" %% "algebra" % "0.3.1", "io.netty" % "netty-buffer" % nettyVersion, "com.twitter" %% "finagle-core" % finagleVersion ) @@ -94,8 +97,8 @@ lazy val types = project .settings( libraryDependencies ++= Seq( "io.netty" % "netty-buffer" % nettyVersion, - "org.spire-math" %% "jawn-ast" % "0.8.4", - "org.typelevel" %% "cats" % catsVersion + "org.spire-math" %% "jawn-ast" % jawnVersion, + "org.typelevel" %% "cats" % catsVersion ) ) .dependsOn(core)