Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
vkostyukov committed Mar 31, 2017
1 parent 2a836c0 commit 21dd666
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 10 deletions.
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ Modules
Finch uses multi-project structure and contains of the following _modules_:

* [`finch-core`](core) - the core classes/functions
* [`finch-generic`](generic) - generic derivation for endpoints
* [`finch-argonaut`](argonaut) - the JSON API support for the [Argonaut][argonaut] library
* [`finch-jackson`](jackson) - the JSON API support for the [Jackson][jackson] library
* [`finch-json4s`](json4s) - the JSON API support for the [JSON4S][json4s] library
Expand All @@ -36,7 +37,7 @@ Every Finch module is published at Maven Central. Use the following _sbt_ snippe

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

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

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

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

```scala
import io.finch._
Expand Down
10 changes: 5 additions & 5 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import com.typesafe.sbt.SbtGhPages.GhPagesKeys._

lazy val buildSettings = Seq(
organization := "com.github.finagle",
version := "0.14.0-SNAPSHOT",
version := "0.14.0",
scalaVersion := "2.12.1",
crossScalaVersions := Seq("2.11.8", "2.12.1")
)
Expand Down Expand Up @@ -188,10 +188,10 @@ lazy val core = project
.settings(moduleName := "finch-core")
.settings(allSettings)

lazy val generic = project
.settings(moduleName := "finch-generic")
.settings(allSettings)
.dependsOn(core % "compile->compile;test->test")
lazy val generic = project
.settings(moduleName := "finch-generic")
.settings(allSettings)
.dependsOn(core % "compile->compile;test->test")

lazy val test = project
.settings(moduleName := "finch-test")
Expand Down
4 changes: 2 additions & 2 deletions docs/src/main/tut/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ build.sbt:

```scala
libraryDependencies ++= Seq(
"com.github.finagle" %% "finch-core" % "0.13.1",
"com.github.finagle" %% "finch-circe" % "0.13.1",
"com.github.finagle" %% "finch-core" % "0.14.0",
"com.github.finagle" %% "finch-circe" % "0.14.0",
"io.circe" %% "circe-generic" % "0.7.0"
)
```
Expand Down

0 comments on commit 21dd666

Please sign in to comment.