Skip to content

Commit

Permalink
Bump version 0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
vkostyukov committed Jan 19, 2015
1 parent 3cd6333 commit 130d794
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Every Finch module is published at Maven Central. Use the following _sbt_ snippe

```scala
libraryDependencies ++= Seq(
"com.github.finagle" %% "[finch-module]" % "0.3.0"
"com.github.finagle" %% "[finch-module]" % "0.4.0"
)
```

Expand All @@ -37,13 +37,13 @@ resolvers ++= Seq(
)

libraryDependencies ++= Seq(
"com.github.finagle" %% "[finch-module]" % "0.4.0-SNAPSHOT" changing()
"com.github.finagle" %% "[finch-module]" % "0.5.0-SNAPSHOT" changing()
)
```

Quickstart
----------
This quick start example is built with the `0.4.0-SNAPSHOT` version of both `finch-core` and `finch-json`.
This quick start example is built with the `0.4.0` version of both `finch-core` and `finch-json`.

```scala
def hello(name: String) = new Service[HttpRequest, HttpResponse] {
Expand Down
2 changes: 1 addition & 1 deletion argonaut/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Use the following _sbt_ snippet:

```scala
libraryDependencies ++= Seq(
"com.github.finagle" %% "finch-argonaut" % "0.3.0"
"com.github.finagle" %% "finch-argonaut" % "0.4.0"
)
```

Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import scoverage.ScoverageSbtPlugin.ScoverageKeys.coverageExcludedPackages

lazy val buildSettings = Seq(
organization := "com.github.finagle",
version := "0.4.0-SNAPSHOT",
version := "0.4.0",
scalaVersion := "2.11.5",
crossScalaVersions := Seq("2.10.4", "2.11.5")
)
Expand Down
2 changes: 1 addition & 1 deletion core/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Use the following _sbt_ snippet:

```scala
libraryDependencies ++= Seq(
"com.github.finagle" %% "finch-core" % "0.3.0"
"com.github.finagle" %% "finch-core" % "0.4.0"
)
```

Expand Down
2 changes: 1 addition & 1 deletion jawn/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Use the following _sbt_ snippet:

```scala
libraryDependencies ++= Seq(
"com.github.finagle" %% "finch-jawn" % "0.3.0"
"com.github.finagle" %% "finch-jawn" % "0.4.0"
)
```

Expand Down
2 changes: 1 addition & 1 deletion json/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Use the following _sbt_ snippet:

```scala
libraryDependencies ++= Seq(
"com.github.finagle" %% "finch-json" % "0.3.0"
"com.github.finagle" %% "finch-json" % "0.4.0"
)
```

Expand Down

0 comments on commit 130d794

Please sign in to comment.