From e7a9ca883970dcf7e547fc7fb8a2e28940a2ef4f Mon Sep 17 00:00:00 2001 From: Vladimir Kostyukov Date: Thu, 15 Jun 2017 17:11:56 -0700 Subject: [PATCH] Bump version to 0.16.0-M1 --- README.md | 4 ++-- build.sbt | 2 +- docs/src/main/tut/index.md | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 321f0b4df..3b138092e 100644 --- a/README.md +++ b/README.md @@ -37,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.16.0-RC1" + "com.github.finagle" %% "[finch-module]" % "0.16.0-M1" ) ``` @@ -53,7 +53,7 @@ libraryDependencies ++= Seq( Hello World! ------------ -This "Hello World!" example is built with the `0.16.0-RC1` version of just `finch-core`. +This "Hello World!" example is built with the `0.16.0-M1` version of just `finch-core`. ```scala import io.finch._ diff --git a/build.sbt b/build.sbt index 2b3572051..99e871fbf 100644 --- a/build.sbt +++ b/build.sbt @@ -2,7 +2,7 @@ import microsites.ExtraMdFileConfig lazy val buildSettings = Seq( organization := "com.github.finagle", - version := "0.16.0-RC1", + version := "0.16.0-M1", scalaVersion := "2.12.2", crossScalaVersions := Seq("2.11.11", "2.12.2") ) diff --git a/docs/src/main/tut/index.md b/docs/src/main/tut/index.md index 917197963..fd8c6d52f 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.16.0-RC1", - "com.github.finagle" %% "finch-circe" % "0.16.0-RC1", + "com.github.finagle" %% "finch-core" % "0.16.0-M1", + "com.github.finagle" %% "finch-circe" % "0.16.0-M1", "io.circe" %% "circe-generic" % "0.8.0" ) ```