From b66498273f57cd66fe3878969e05a5c5a4faea95 Mon Sep 17 00:00:00 2001 From: Vladimir Kostyukov Date: Fri, 14 Oct 2016 15:37:32 -0700 Subject: [PATCH] Prepare the 0.11-M4 release --- README.md | 4 ++-- build.sbt | 17 +++++++++++------ docs/index.md | 6 +++--- 3 files changed, 16 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index e031faca0..006494acd 100644 --- a/README.md +++ b/README.md @@ -35,7 +35,7 @@ Every Finch module is published at Maven Central. Use the following _sbt_ snippe ```scala libraryDependencies ++= Seq( - "com.github.finagle" %% "[finch-module]" % "0.11.0-M3" + "com.github.finagle" %% "[finch-module]" % "0.11.0-M4" ) ``` @@ -51,7 +51,7 @@ libraryDependencies ++= Seq( Hello World! ------------ -This "Hello World!" example is built with the `0.11.0-M3` version of `finch-core`. +This "Hello World!" example is built with the `0.11.0-M4` version of `finch-core`. ```scala import io.finch._ diff --git a/build.sbt b/build.sbt index 3c541b83b..3e919bcbf 100644 --- a/build.sbt +++ b/build.sbt @@ -2,13 +2,16 @@ import sbtunidoc.Plugin.UnidocKeys._ lazy val buildSettings = Seq( organization := "com.github.finagle", - version := "0.11.0-M3", + version := "0.11.0-M4", scalaVersion := "2.11.8", crossScalaVersions := Seq("2.10.6", "2.11.8") ) lazy val finagleVersion = "6.35.0" -lazy val circeVersion = "0.5.1" +lazy val utilVersion = "6.34.0" +lazy val twitterServerVersion = "1.20.0" +lazy val finagleOAuth2Version = "0.1.7" +lazy val circeVersion = "0.5.3" lazy val catbirdVersion = "0.7.0" lazy val shapelessVersion = "2.3.2" lazy val catsVersion = "0.7.2" @@ -127,6 +130,8 @@ lazy val finch = project.in(file(".")) |import com.twitter.finagle.Http |import com.twitter.finagle.http.{Request, Response, Status, Version} |import io.circe._ + |import io.circe.generic.auto._ + |import shapeless._ """.stripMargin ) .settings(libraryDependencies ++= Seq( @@ -211,7 +216,7 @@ lazy val oauth2 = project .settings(moduleName := "finch-oauth2") .settings(allSettings) .settings(libraryDependencies ++= Seq( - "com.github.finagle" %% "finagle-oauth2" % "0.1.6", + "com.github.finagle" %% "finagle-oauth2" % finagleOAuth2Version, "org.mockito" % "mockito-all" % "1.10.19" % "test" )) .dependsOn(core) @@ -233,9 +238,9 @@ lazy val examples = project .settings( libraryDependencies ++= Seq( "io.circe" %% "circe-generic" % circeVersion, - "com.twitter" %% "twitter-server" % "1.19.0", - "com.twitter" %% "util-eval" % "6.33.0", - "com.github.finagle" %% "finagle-oauth2" % "0.1.6" + "com.twitter" %% "twitter-server" % twitterServerVersion, + "com.twitter" %% "util-eval" % utilVersion, + "com.github.finagle" %% "finagle-oauth2" % finagleOAuth2Version ) ) .dependsOn(core, circe, jackson, oauth2) diff --git a/docs/index.md b/docs/index.md index 84005feda..3ef4d828a 100644 --- a/docs/index.md +++ b/docs/index.md @@ -16,9 +16,9 @@ build.sbt: ```scala libraryDependencies ++= Seq( - "com.github.finagle" %% "finch-core" % "0.11.0-M3", - "com.github.finagle" %% "finch-circe" % "0.11.0-M3", - "io.circe" %% "circe-generic" % "0.5.0-M2" + "com.github.finagle" %% "finch-core" % "0.11.0-M4", + "com.github.finagle" %% "finch-circe" % "0.11.0-M4", + "io.circe" %% "circe-generic" % "0.5.3" ) ```