From 21dd666a0afcaccecb4a4c6a283e405528ff6c7c Mon Sep 17 00:00:00 2001 From: Vladimir Kostyukov Date: Fri, 31 Mar 2017 10:06:04 -0700 Subject: [PATCH] Bump version --- README.md | 7 ++++--- build.sbt | 10 +++++----- docs/src/main/tut/index.md | 4 ++-- 3 files changed, 11 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index f347b0013..8387cbe53 100644 --- a/README.md +++ b/README.md @@ -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 @@ -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" ) ``` @@ -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._ diff --git a/build.sbt b/build.sbt index efd738789..8624fb38e 100644 --- a/build.sbt +++ b/build.sbt @@ -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") ) @@ -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") diff --git a/docs/src/main/tut/index.md b/docs/src/main/tut/index.md index ddb627fb5..bd27cc491 100644 --- a/docs/src/main/tut/index.md +++ b/docs/src/main/tut/index.md @@ -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" ) ```