Skip to content

Commit

Permalink
Bump version to 0.13
Browse files Browse the repository at this point in the history
  • Loading branch information
vkostyukov committed Feb 11, 2017
1 parent 0bd6fa2 commit 653b461
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 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.12.0"
"com.github.finagle" %% "[finch-module]" % "0.13.0"
)
```

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

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

Hello World!
------------
This "Hello World!" example is built with the `0.12.0` version of just `finch-core`.
This "Hello World!" example is built with the `0.13.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.13.0-SNAPSHOT",
version := "0.13.0",
scalaVersion := "2.12.1",
crossScalaVersions := Seq("2.11.8", "2.12.1")
)
Expand Down
4 changes: 2 additions & 2 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.12.0",
"com.github.finagle" %% "finch-circe" % "0.12.0",
"com.github.finagle" %% "finch-core" % "0.13.0",
"com.github.finagle" %% "finch-circe" % "0.13.0",
"io.circe" %% "circe-generic" % "0.7.0"
)
```
Expand Down

0 comments on commit 653b461

Please sign in to comment.