From 59deb3fbe907af27bdc49dcf6dab784e88755e41 Mon Sep 17 00:00:00 2001 From: Vladimir Kostyukov Date: Tue, 17 Jan 2017 19:05:28 -0800 Subject: [PATCH] Prepare 0.12 release --- README.md | 6 +++--- build.sbt | 2 +- docs/index.md | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 1f4037838..befba5104 100644 --- a/README.md +++ b/README.md @@ -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" ) ``` @@ -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._ diff --git a/build.sbt b/build.sbt index aa5ca1eb5..319249c56 100644 --- a/build.sbt +++ b/build.sbt @@ -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") ) diff --git a/docs/index.md b/docs/index.md index a333ee6b5..5b7bc132c 100644 --- a/docs/index.md +++ b/docs/index.md @@ -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" ) ```