From 653b461e393d9325428307ae2583a59d23b8b825 Mon Sep 17 00:00:00 2001 From: Vladimir Kostyukov Date: Sat, 11 Feb 2017 13:30:42 -0800 Subject: [PATCH] Bump version to 0.13 --- README.md | 6 +++--- build.sbt | 2 +- docs/index.md | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 85a472a29..ab5a0b52a 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.12.0" + "com.github.finagle" %% "[finch-module]" % "0.13.0" ) ``` @@ -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._ diff --git a/build.sbt b/build.sbt index 238038cc4..adec2df7c 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.13.0-SNAPSHOT", + version := "0.13.0", scalaVersion := "2.12.1", crossScalaVersions := Seq("2.11.8", "2.12.1") ) diff --git a/docs/index.md b/docs/index.md index 99d5e66c3..af97742fa 100644 --- a/docs/index.md +++ b/docs/index.md @@ -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" ) ```