Skip to content

Commit

Permalink
Merge pull request #654 from finagle/vk/prepare-0.11-M4
Browse files Browse the repository at this point in the history
Prepare the 0.11-M4 release
  • Loading branch information
vkostyukov committed Oct 17, 2016
2 parents a98bfcf + b664982 commit b446511
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 11 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"
)
```

Expand All @@ -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._
Expand Down
17 changes: 11 additions & 6 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -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(
Expand Down Expand Up @@ -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)
Expand All @@ -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)
Expand Down
6 changes: 3 additions & 3 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"
)
```

Expand Down

0 comments on commit b446511

Please sign in to comment.