Skip to content

Commit

Permalink
Prepare 0.11 release
Browse files Browse the repository at this point in the history
  • Loading branch information
vkostyukov committed Dec 13, 2016
1 parent 8c0b305 commit 8b78480
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Finch uses multi-project structure and contains of the following _modules_:
* [`finch-sprayjson`](sprayjson) - The JSON API support for the [SprayJson][sprayjson] library
* [`finch-test`](test) - the test support classes/functions
* [`finch-oauth2`](oauth2) - the OAuth2 support backed by the [finagle-oauth2][finagle-oauth2] library
* [`finch-sse`](see) - SSE ([Server Sent Events](server-sent-events)) support in Finch (available in 0.11)
* [`finch-sse`](see) - SSE ([Server Sent Events](server-sent-events)) support in Finch

Installation
------------
Expand All @@ -36,7 +36,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-M4"
"com.github.finagle" %% "[finch-module]" % "0.11.0"
)
```

Expand All @@ -46,7 +46,7 @@ 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()
)
```

Expand Down Expand Up @@ -78,7 +78,7 @@ version): Finch performs on **85% of Finagle's throughput**.
| Finagle + Jackson | 33867.56 req/s | 43781.26 req/s | 43854.92 req/s |
| Finch + Circe | 27126.25 req/s | 36720.75 req/s | 37191.58 req/s |

Finch is also load tested against a number of Scala HTTP frameworks and libraries as par of the
Finch is also load tested against a number of Scala HTTP frameworks and libraries as part of the
[TechEmpower benchmark][tempower]. The most recent round showed that Finch performs really well
there, [scoring a second place][finch-is-fast] across all the Scala libraries.

Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import sbtunidoc.Plugin.UnidocKeys._

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

Expand Down
6 changes: 3 additions & 3 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ build.sbt:

```scala
libraryDependencies ++= Seq(
"com.github.finagle" %% "finch-core" % "0.11.0-M4",
"com.github.finagle" %% "finch-circe" % "0.11.0-M4",
"com.github.finagle" %% "finch-core" % "0.12.0",
"com.github.finagle" %% "finch-circe" % "0.12.0",
"io.circe" %% "circe-generic" % "0.5.3"
)
```
Expand All @@ -41,7 +41,7 @@ object Main extends App {
java.util.Calendar.getInstance(l).getTime.toString

val time: Endpoint[Time] =
post("time" :: body.as[Locale]) { l: Locale =>
post("time" :: jsonBody[Locale]) { l: Locale =>
Ok(Time(l, currentTime(new java.util.Locale(l.language, l.country))))
}

Expand Down

0 comments on commit 8b78480

Please sign in to comment.