From 7b545b6f5705e5a671588a752dbafdf4d930af02 Mon Sep 17 00:00:00 2001 From: Vladimir Kostyukov Date: Thu, 21 Dec 2017 09:06:46 -0800 Subject: [PATCH 1/2] Upgrade to Cats RC-2 --- build.sbt | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/build.sbt b/build.sbt index 25e31576a..b7da1b665 100644 --- a/build.sbt +++ b/build.sbt @@ -7,21 +7,21 @@ lazy val buildSettings = Seq( crossScalaVersions := Seq("2.11.12", "2.12.4") ) -lazy val finagleVersion = "17.11.0" -lazy val twitterServerVersion = "17.11.0" -lazy val circeVersion = "0.9.0-M2" -lazy val circeIterateeVersion = "0.9.0-M3" -lazy val circeJacksonVersion = "0.9.0-M2" -lazy val catbirdVersion = "0.21.0" +lazy val finagleVersion = "17.12.0" +lazy val twitterServerVersion = "17.12.0" +lazy val circeVersion = "0.9.0-M3" +lazy val circeIterateeVersion = "0.9.0-M4" +lazy val circeJacksonVersion = "0.9.0-M3" +lazy val catbirdVersion = "0.22.0" lazy val shapelessVersion = "2.3.2" -lazy val catsVersion = "1.0.0-RC1" +lazy val catsVersion = "1.0.0-RC2" lazy val sprayVersion = "1.3.3" lazy val playVersion = "2.6.6" lazy val jacksonVersion = "2.8.8" lazy val argonautVersion = "6.2" lazy val json4sVersion = "3.5.2" -lazy val iterateeVersion = "0.15.0" -lazy val iterateeTwitterVersion = "0.16.0" +lazy val iterateeVersion = "0.16.0" +lazy val iterateeTwitterVersion = "0.17.0" lazy val compilerOptions = Seq( "-deprecation", From aa6e9e9d86e5b810b5a36d2069cdb80308955af6 Mon Sep 17 00:00:00 2001 From: Vladimir Kostyukov Date: Fri, 22 Dec 2017 10:12:38 -0800 Subject: [PATCH 2/2] Bump version --- README.md | 2 +- build.sbt | 2 +- docs/src/main/tut/index.md | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 8e8be142a..0bf434b1f 100644 --- a/README.md +++ b/README.md @@ -37,7 +37,7 @@ Every Finch module is published at Maven Central. Use the following _sbt_ snippe ```scala libraryDependencies ++= Seq( - "com.github.finagle" %% "[finch-module]" % "0.16.0-M5" + "com.github.finagle" %% "[finch-module]" % "0.16.0-M6" ) ``` diff --git a/build.sbt b/build.sbt index b7da1b665..f99e1fb6a 100644 --- a/build.sbt +++ b/build.sbt @@ -2,7 +2,7 @@ import microsites.ExtraMdFileConfig lazy val buildSettings = Seq( organization := "com.github.finagle", - version := "0.16.0-M5", + version := "0.16.0-M6", scalaVersion := "2.12.4", crossScalaVersions := Seq("2.11.12", "2.12.4") ) diff --git a/docs/src/main/tut/index.md b/docs/src/main/tut/index.md index c7c159fe7..75b28185e 100644 --- a/docs/src/main/tut/index.md +++ b/docs/src/main/tut/index.md @@ -22,9 +22,9 @@ build.sbt: ```scala libraryDependencies ++= Seq( - "com.github.finagle" %% "finch-core" % "0.16.0-M5", - "com.github.finagle" %% "finch-circe" % "0.16.0-M5", - "io.circe" %% "circe-generic" % "0.9.0-M2" + "com.github.finagle" %% "finch-core" % "0.16.0-M6", + "com.github.finagle" %% "finch-circe" % "0.16.0-M6", + "io.circe" %% "circe-generic" % "0.9.0-M3" ) ```