Skip to content

Commit

Permalink
Merge pull request finagle#611 from finagle/prepare-0.11-M1
Browse files Browse the repository at this point in the history
Prepare 0.11-M1 release
  • Loading branch information
vkostyukov authored Jul 13, 2016
2 parents 9040dbe + eda553e commit 311730d
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ Every Finch module is published at Maven Central. Use the following _sbt_ snippe

```scala
libraryDependencies ++= Seq(
"com.github.finagle" %% "[finch-module]" % "0.10.0"
"com.github.finagle" %% "[finch-module]" % "0.11.0-M1"
)
```

Expand All @@ -44,21 +44,21 @@ libraryDependencies ++= Seq(
resolvers += Resolver.sonatypeRepo("snapshots")

libraryDependencies ++= Seq(
"com.github.finagle" %% "[finch-module]" % "0.11.0-SNAPSHOT" changing()
"com.github.finagle" %% "[finch-module]" % "0.12.0-SNAPSHOT" changing()
)
```

Hello World!
------------
This "Hello World!" example is built with the `0.11.0-SNAPSHOT` version of `finch-core`.
This "Hello World!" example is built with the `0.12.0-SNAPSHOT` version of `finch-core`.

```scala
import io.finch._
import com.twitter.finagle.Http

val api: Endpoint[String] = get("hello") { Ok("Hello, World!") }

Http.serve(":8080", api.toService)
Http.server.serve(":8080", api.toServiceAs[Plain.Text])
```

See [examples](examples/src/main/scala/io/finch) sub-project for more complete examples.
Expand Down
4 changes: 2 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@ import ScoverageSbtPlugin._

lazy val buildSettings = Seq(
organization := "com.github.finagle",
version := "0.11.0-SNAPSHOT",
version := "0.11.0-M1",
scalaVersion := "2.11.8",
crossScalaVersions := Seq("2.10.6", "2.11.8")
)

lazy val finagleVersion = "6.35.0"
lazy val circeVersion = "0.5.0-M1"
lazy val circeVersion = "0.5.0-M2"
lazy val catbirdVersion = "0.5.0"
lazy val shapelessVersion = "2.3.1"
lazy val catsVersion = "0.6.0"
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.10.0",
"com.github.finagle" %% "finch-circe" % "0.10.0",
"io.circe" %% "circe-generic" % "0.3.0"
"com.github.finagle" %% "finch-core" % "0.11.0-M1",
"com.github.finagle" %% "finch-circe" % "0.11.0-M1",
"io.circe" %% "circe-generic" % "0.5.0-M2"
)
```

Expand Down

0 comments on commit 311730d

Please sign in to comment.