From 6a3a6714a5fa5e431c12a29bbab94d6a0490ecdf Mon Sep 17 00:00:00 2001 From: Vladimir Kostyukov Date: Sun, 8 Nov 2015 17:22:49 -0800 Subject: [PATCH] Bump version 0.9.0 --- README.md | 4 ++-- argonaut/README.md | 15 --------------- build.sbt | 2 +- circe/README.md | 12 ------------ core/README.md | 16 ---------------- jackson/README.md | 15 --------------- json4s/README.md | 15 --------------- petstore/README.md | 1 - 8 files changed, 3 insertions(+), 77 deletions(-) delete mode 100644 argonaut/README.md delete mode 100644 circe/README.md delete mode 100644 core/README.md delete mode 100644 jackson/README.md delete mode 100644 json4s/README.md delete mode 100644 petstore/README.md diff --git a/README.md b/README.md index 91405e3cd..470958239 100644 --- a/README.md +++ b/README.md @@ -33,7 +33,7 @@ Every Finch module is published at Maven Central. Use the following _sbt_ snippe ```scala libraryDependencies ++= Seq( - "com.github.finagle" %% "[finch-module]" % "0.8.0" + "com.github.finagle" %% "[finch-module]" % "0.9.0" ) ``` @@ -43,7 +43,7 @@ libraryDependencies ++= Seq( resolvers += Resolver.sonatypeRepo("snapshots") libraryDependencies ++= Seq( - "com.github.finagle" %% "[finch-module]" % "0.9.0-SNAPSHOT" changing() + "com.github.finagle" %% "[finch-module]" % "0.9.1-SNAPSHOT" changing() ) ``` diff --git a/argonaut/README.md b/argonaut/README.md deleted file mode 100644 index bdab4bebd..000000000 --- a/argonaut/README.md +++ /dev/null @@ -1,15 +0,0 @@ -The `finch-argonaut` module provides the Finch library a support for the [Argonaut](http://argonaut.io) JSON library. - -Installation ------------- -Use the following _sbt_ snippet: - -```scala -libraryDependencies ++= Seq( - "com.github.finagle" %% "finch-argonaut" % "0.8.0" -) -``` - -Documentation -------------- -See section [Argonaut](/docs/json.md#argonaut). diff --git a/build.sbt b/build.sbt index bc862f148..46997cc4a 100644 --- a/build.sbt +++ b/build.sbt @@ -3,7 +3,7 @@ import ScoverageSbtPlugin._ lazy val buildSettings = Seq( organization := "com.github.finagle", - version := "0.9.0-SNAPSHOT", + version := "0.9.0", scalaVersion := "2.11.7", crossScalaVersions := Seq("2.10.5", "2.11.7") ) diff --git a/circe/README.md b/circe/README.md deleted file mode 100644 index ee7d0b583..000000000 --- a/circe/README.md +++ /dev/null @@ -1,12 +0,0 @@ -The `finch-jfc` module provides the Finch library a support for the [circe](https://github.com/travisbrown/circe) JSON library. - -Installation ------------- -Use the following _sbt_ snippet: - -```scala -libraryDependencies ++= Seq( - "com.github.finagle" %% "finch-circe" % "0.8.0" -) -``` - diff --git a/core/README.md b/core/README.md deleted file mode 100644 index 676236dd7..000000000 --- a/core/README.md +++ /dev/null @@ -1,16 +0,0 @@ -The `finch-core` module provides all the basic classes and functions that power Finch. This is the cornerstone of the -Finch library. - -Installation ------------- -Use the following _sbt_ snippet: - -```scala -libraryDependencies ++= Seq( - "com.github.finagle" %% "finch-core" % "0.8.0" -) -``` - -Documentation -------------- -See [/docs](/docs/index.md) for more details. diff --git a/jackson/README.md b/jackson/README.md deleted file mode 100644 index 59deb88af..000000000 --- a/jackson/README.md +++ /dev/null @@ -1,15 +0,0 @@ -The `finch-jackson` module provides support for [Jackson](http://jackson.codehaus.org/) library. - -Installation ------------- -Use the following _sbt_ snippet: - -```scala -libraryDependencies ++= Seq( - "com.github.finagle" %% "finch-jackson" % "0.8.0" -) -``` - -Documentation -------------- -See section [Jackson](/docs/json.md#jackson). diff --git a/json4s/README.md b/json4s/README.md deleted file mode 100644 index 9f60b696c..000000000 --- a/json4s/README.md +++ /dev/null @@ -1,15 +0,0 @@ -The `finch-json4s` module provides the Finch library a support for the [JSON4S](http://json4s.org/) library. - -Installation ------------- -Use the following _sbt_ snippet: - -```scala -libraryDependencies ++= Seq( - "com.github.finagle" %% "finch-json4s" % "0.8.0" -) -``` - -Documentation -------------- -See section [Json4s](/docs/json.md#json4s). diff --git a/petstore/README.md b/petstore/README.md deleted file mode 100644 index af8dc64a5..000000000 --- a/petstore/README.md +++ /dev/null @@ -1 +0,0 @@ -The `petstore` project implements the [Petstore](http://petstore.swagger.io/) Swagger example.