Skip to content

Commit

Permalink
Prepare 0.12 release
Browse files Browse the repository at this point in the history
  • Loading branch information
vkostyukov committed Jan 18, 2017
1 parent fb758d9 commit 59deb3f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"
"com.github.finagle" %% "[finch-module]" % "0.12.0"
)
```

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

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

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

```scala
import io.finch._
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.12.0-SNAPSHOT",
version := "0.12.0",
scalaVersion := "2.12.1",
crossScalaVersions := Seq("2.11.8", "2.12.1")
)
Expand Down
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ build.sbt:
libraryDependencies ++= Seq(
"com.github.finagle" %% "finch-core" % "0.12.0",
"com.github.finagle" %% "finch-circe" % "0.12.0",
"io.circe" %% "circe-generic" % "0.7.0-M1"
"io.circe" %% "circe-generic" % "0.7.0"
)
```

Expand Down

0 comments on commit 59deb3f

Please sign in to comment.