Skip to content

Commit

Permalink
Merge pull request #881 from finagle/vk/upd-deps
Browse files Browse the repository at this point in the history
Upgrade to Cats RC-2
  • Loading branch information
vkostyukov authored Dec 22, 2017
2 parents af94e61 + aa6e9e9 commit 78720cd
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"
)
```

Expand Down
20 changes: 10 additions & 10 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,26 +2,26 @@ 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")
)

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",
Expand Down
6 changes: 3 additions & 3 deletions docs/src/main/tut/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"
)
```

Expand Down

0 comments on commit 78720cd

Please sign in to comment.