Skip to content

Commit

Permalink
upgrade version for release
Browse files Browse the repository at this point in the history
  • Loading branch information
daviddenton committed Aug 2, 2016
1 parent bf267fb commit c7569f6
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Expand Up @@ -6,7 +6,7 @@ The main API is stable, but expect some amount of breaking changes around major
- Add strict `Content-Type` header checking for `RouteSpec`s based on `consuming()` and `withBody()` settings. Option for non-strictness.
- Add strict `Accept` header checking for `RouteSpec`s based on `producing()` settings. Option for non-strictness.

## 13.5.0 (uncut)
## 13.5.0
- Addition of `Contract` and `ContractProxyModule`. This (optional) formalisation of client contracts allows simple
exposing of a client API contract via Swagger. See `ContractProxyExample`.
- (Unlikely) Break: Renamed of `IncompletePath` to `UnboundRoute` for clarity. This should be transparent to end users.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -42,7 +42,7 @@ To activate some optional features, additional dependencies may be required - pl
Add the following lines to ```build.sbt``` - the lib also hosted in Maven Central, but we prefer Bintray):
```scala
resolvers += "JCenter" at "https://jcenter.bintray.com"
libraryDependencies += "io.fintrospect" %% "fintrospect-core" % "13.4.0"
libraryDependencies += "io.fintrospect" %% "fintrospect-core" % "13.5.0"
```

## See the code
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
@@ -1,7 +1,7 @@
lazy val baseSettings = Seq(
name := "fintrospect",
organization := "io.fintrospect",
version := "13.4.0",
version := "13.5.0",
scalaVersion := "2.11.8",
licenses := Seq("Apache-2.0" -> url("http://www.apache.org/licenses/LICENSE-2.0")),
scalacOptions := Seq(
Expand Down
4 changes: 2 additions & 2 deletions harp.json
@@ -1,8 +1,8 @@
{
"globals": {
"fintrospect": {
"old": "13.3.0",
"new": "13.4.0"
"old": "13.4.0",
"new": "13.5.0"
}
}
}
14 changes: 7 additions & 7 deletions src/main/site/format-dependencies.md
Expand Up @@ -14,19 +14,19 @@
<tr>
<td><a href="http://argonaut.io/">Argonaut</a></td>
<td>application/json</td>
<td>"io.fintrospect" %% "fintrospect-argonaut" % "13.4.0"</td>
<td>"io.fintrospect" %% "fintrospect-argonaut" % "13.5.0"</td>
<td><a data-toggle="tooltip" href="#" title="io.fintrospect.formats.json.Argonaut">Argonaut</a></td>
</tr>
<tr>
<td><a href="https://github.com/travisbrown/circe">Circe</a></td>
<td>application/json</td>
<td>"io.fintrospect" %% "fintrospect-circe" % "13.4.0"</td>
<td>"io.fintrospect" %% "fintrospect-circe" % "13.5.0"</td>
<td><a data-toggle="tooltip" href="#" title="io.fintrospect.formats.json.Circe">Circe</a></td>
</tr>
<tr>
<td><a href="https://github.com/google/gson">GSON</a></td>
<td>application/json</td>
<td>"io.fintrospect" %% "fintrospect-gson" % "13.4.0"</td>
<td>"io.fintrospect" %% "fintrospect-gson" % "13.5.0"</td>
<td><a data-toggle="tooltip" href="#" title="io.fintrospect.formats.json.Gson">Gson</a></td>
</tr>
<tr>
Expand All @@ -38,15 +38,15 @@
<tr>
<td><a href="http://json4s.org/">Json4S Native</a></td>
<td>application/json</td>
<td>"io.fintrospect" %% "fintrospect-json4s" % "13.4.0"</td>
<td>"io.fintrospect" %% "fintrospect-json4s" % "13.5.0"</td>
<td><a data-toggle="tooltip" href="#" title="io.fintrospect.formats.json.Json4s.Native">Json4s.Native</a>
<br/>
<a data-toggle="tooltip" href="#" title="io.fintrospect.formats.json.Json4s.NativeDoubleMode">Json4s.NativeDoubleMode</a></td>
</tr>
<tr>
<td><a href="http://json4s.org/">Json4S Jackson</a> </td>
<td>application/json</td>
<td>"io.fintrospect" %% "fintrospect-json4s" % "13.4.0"</td>
<td>"io.fintrospect" %% "fintrospect-json4s" % "13.5.0"</td>
<td>
<a data-toggle="tooltip" href="#" title="io.fintrospect.formats.json.Json4s.Jackson">Json4s.Jackson</a>
<br/>
Expand All @@ -61,13 +61,13 @@
<tr>
<td><a href="https://www.playframework.com">Play</a></td>
<td>application/json</td>
<td>"io.fintrospect" %% "fintrospect-play" % "13.4.0"</td>
<td>"io.fintrospect" %% "fintrospect-play" % "13.5.0"</td>
<td><a data-toggle="tooltip" href="#" title="io.fintrospect.formats.json.Play">Play</a></td>
</tr>
<tr>
<td><a href="https://github.com/spray/spray-json">Spray</a></td>
<td>application/json</td>
<td>"io.fintrospect" %% "fintrospect-spray" % "13.4.0"</td>
<td>"io.fintrospect" %% "fintrospect-spray" % "13.5.0"</td>
<td><a data-toggle="tooltip" href="#" title="io.fintrospect.formats.json.Spray">Spray</a></td>
</tr>
<tr>
Expand Down
2 changes: 1 addition & 1 deletion src/main/site/installation-header.md
Expand Up @@ -9,5 +9,5 @@ To activate some optional features, additional dependencies may be required - th
Add the following lines to ```build.sbt``` - the lib also hosted in Maven Central, but we prefer Bintray):
```scala
resolvers += "JCenter" at "https://jcenter.bintray.com"
libraryDependencies += "io.fintrospect" %% "fintrospect-core" % "13.4.0"
libraryDependencies += "io.fintrospect" %% "fintrospect-core" % "13.5.0"
```
4 changes: 2 additions & 2 deletions src/main/site/templating-dependencies.md
Expand Up @@ -8,13 +8,13 @@
<tr>
<td><a href="http://handlebarsjs.com">Handlebars</a></td>
<td>.hbs</td>
<td>"io.fintrospect" %% "fintrospect-handlebars" % "13.4.0"</td>
<td>"io.fintrospect" %% "fintrospect-handlebars" % "13.5.0"</td>
<td><a data-toggle="tooltip" href="#" title="io.fintrospect.templating.MustacheTemplates">MustacheTemplates</a></td>
</tr>
<tr>
<td><a href="http://mustache.github.io/">Mustache</a></td>
<td>.mustache</td>
<td>"io.fintrospect" %% "fintrospect-mustache" % "13.4.0"</td>
<td>"io.fintrospect" %% "fintrospect-mustache" % "13.5.0"</td>
<td><a data-toggle="tooltip" href="#" title="io.fintrospect.templating.MustacheTemplates">MustacheTemplates</a></td>
</tr>
</table>
Expand Down

0 comments on commit c7569f6

Please sign in to comment.