Skip to content

Commit

Permalink
Setting version to 0.13.1
Browse files Browse the repository at this point in the history
  • Loading branch information
softwaremill-ci committed Apr 6, 2020
1 parent da237ed commit ae96eb1
Show file tree
Hide file tree
Showing 11 changed files with 22 additions and 22 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ tapir documentation is available at [tapir.softwaremill.com](http://tapir.softwa
Add the following dependency:

```scala
"com.softwaremill.sttp.tapir" %% "tapir-core" % "0.13.0"
"com.softwaremill.sttp.tapir" %% "tapir-core" % "0.13.1"
```

You'll need partial unification enabled in the compiler (alternatively, you'll need to manually provide type arguments in some cases):
Expand Down
8 changes: 4 additions & 4 deletions doc/endpoint/json.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ the json codec that is in scope.
To use Circe add the following dependency to your project:

```scala
"com.softwaremill.sttp.tapir" %% "tapir-json-circe" % "0.13.0"
"com.softwaremill.sttp.tapir" %% "tapir-json-circe" % "0.13.1"
```

Next, import the package (or extend the `TapirJsonCirce` trait, see [MyTapir](../mytapir.html)):
Expand Down Expand Up @@ -87,7 +87,7 @@ Now the above JSON object will render as
To use µPickle add the following dependency to your project:

```scala
"com.softwaremill.sttp.tapir" %% "tapir-json-upickle" % "0.13.0"
"com.softwaremill.sttp.tapir" %% "tapir-json-upickle" % "0.13.1"
```

Next, import the package (or extend the `TapirJsonuPickle` trait, see [MyTapir](../mytapir.html) and add `TapirJsonuPickle` not `TapirCirceJson`):
Expand Down Expand Up @@ -121,7 +121,7 @@ For more examples, including making a custom encoder/decoder, see [TapirJsonuPic
To use Play JSON add the following dependency to your project:

```scala
"com.softwaremill.sttp.tapir" %% "tapir-json-play" % "0.13.0"
"com.softwaremill.sttp.tapir" %% "tapir-json-play" % "0.13.1"
```

Next, import the package (or extend the `TapirJsonPlay` trait, see [MyTapir](../mytapir.html) and add `TapirJsonPlay` not `TapirCirceJson`):
Expand All @@ -137,7 +137,7 @@ Play JSON requires `Reads` and `Writes` implicit values in scope for each type y
To use Spray JSON add the following dependency to your project:

```scala
"com.softwaremill.sttp.tapir" %% "tapir-json-spray" % "0.13.0"
"com.softwaremill.sttp.tapir" %% "tapir-json-spray" % "0.13.1"
```

Next, import the package (or extend the `TapirJsonSpray` trait, see [MyTapir](../mytapir.html) and add `TapirJsonSpray` not `TapirCirceJson`):
Expand Down
14 changes: 7 additions & 7 deletions doc/openapi.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
To use, add the following dependencies:

```scala
"com.softwaremill.sttp.tapir" %% "tapir-openapi-docs" % "0.13.0"
"com.softwaremill.sttp.tapir" %% "tapir-openapi-circe-yaml" % "0.13.0"
"com.softwaremill.sttp.tapir" %% "tapir-openapi-docs" % "0.13.1"
"com.softwaremill.sttp.tapir" %% "tapir-openapi-circe-yaml" % "0.13.1"
```

Tapir contains a case class-based model of the openapi data structures in the `openapi/openapi-model` subproject (the
Expand Down Expand Up @@ -63,17 +63,17 @@ akka-http/http4s routes for exposing documentation using [Swagger UI](https://sw
[Redoc](https://github.com/Redocly/redoc):

```scala
"com.softwaremill.sttp.tapir" %% "tapir-swagger-ui-akka-http" % "0.13.0"
"com.softwaremill.sttp.tapir" %% "tapir-redoc-akka-http" % "0.13.0"
"com.softwaremill.sttp.tapir" %% "tapir-swagger-ui-http4s" % "0.13.0"
"com.softwaremill.sttp.tapir" %% "tapir-redoc-http4s" % "0.13.0"
"com.softwaremill.sttp.tapir" %% "tapir-swagger-ui-akka-http" % "0.13.1"
"com.softwaremill.sttp.tapir" %% "tapir-redoc-akka-http" % "0.13.1"
"com.softwaremill.sttp.tapir" %% "tapir-swagger-ui-http4s" % "0.13.1"
"com.softwaremill.sttp.tapir" %% "tapir-redoc-http4s" % "0.13.1"
```

Note: `tapir-swagger-ui-akka-http` transitively pulls some Akka modules in version 2.6. If you want to force
your own Akka version (for example 2.5), use sbt exclusion. Mind the Scala version in artifact name:

```scala
"com.softwaremill.sttp.tapir" %% "tapir-swagger-ui-akka-http" % "0.13.0" exclude("com.typesafe.akka", "akka-stream_2.12")
"com.softwaremill.sttp.tapir" %% "tapir-swagger-ui-akka-http" % "0.13.1" exclude("com.typesafe.akka", "akka-stream_2.12")
```

Usage example for akka-http:
Expand Down
2 changes: 1 addition & 1 deletion doc/quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
To use tapir, add the following dependency to your project:

```scala
"com.softwaremill.sttp.tapir" %% "tapir-core" % "0.13.0"
"com.softwaremill.sttp.tapir" %% "tapir-core" % "0.13.1"
```

This will import only the core classes needed to create endpoint descriptions. To generate a server or a client, you
Expand Down
4 changes: 2 additions & 2 deletions doc/server/akkahttp.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@ To expose an endpoint as an [akka-http](https://doc.akka.io/docs/akka-http/curre
dependency:

```scala
"com.softwaremill.sttp.tapir" %% "tapir-akka-http-server" % "0.13.0"
"com.softwaremill.sttp.tapir" %% "tapir-akka-http-server" % "0.13.1"
```

This will transitively pull some Akka modules in version 2.6. If you want to force
your own Akka version (for example 2.5), use sbt exclusion. Mind the Scala version in artifact name:

```scala
"com.softwaremill.sttp.tapir" %% "tapir-akka-http-server" % "0.13.0" exclude("com.typesafe.akka", "akka-stream_2.12")
"com.softwaremill.sttp.tapir" %% "tapir-akka-http-server" % "0.13.1" exclude("com.typesafe.akka", "akka-stream_2.12")
```

Now import the package:
Expand Down
4 changes: 2 additions & 2 deletions doc/server/finatra.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ To expose an endpoint as an [finatra](https://twitter.github.io/finatra/) server
dependency:

```scala
"com.softwaremill.sttp.tapir" %% "tapir-finatra-server" % "0.13.0"
"com.softwaremill.sttp.tapir" %% "tapir-finatra-server" % "0.13.1"
```

and import the package:
Expand All @@ -16,7 +16,7 @@ import sttp.tapir.server.finatra._
or if you would like to use cats-effect project, you can add the following dependency:

```scala
"com.softwaremill.sttp.tapir" %% "tapir-finatra-server-cats" % "0.13.0"
"com.softwaremill.sttp.tapir" %% "tapir-finatra-server-cats" % "0.13.1"
```

and import the packate:
Expand Down
2 changes: 1 addition & 1 deletion doc/server/http4s.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ To expose an endpoint as an [http4s](https://http4s.org) server, first add the f
dependency:

```scala
"com.softwaremill.sttp.tapir" %% "tapir-http4s-server" % "0.13.0"
"com.softwaremill.sttp.tapir" %% "tapir-http4s-server" % "0.13.1"
```

and import the package:
Expand Down
2 changes: 1 addition & 1 deletion doc/server/play.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

To expose endpoint as a [play-server](https://www.playframework.com/) first add the following dependencies:
```scala
"com.softwaremill.sttp.tapir" %% "tapir-play-server" % "0.13.0"
"com.softwaremill.sttp.tapir" %% "tapir-play-server" % "0.13.1"
```
and
```scala
Expand Down
2 changes: 1 addition & 1 deletion doc/sttp.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Add the dependency:

```scala
"com.softwaremill.sttp.tapir" %% "tapir-sttp-client" % "0.13.0"
"com.softwaremill.sttp.tapir" %% "tapir-sttp-client" % "0.13.1"
```

To make requests using an endpoint definition using the [sttp client](https://github.com/softwaremill/sttp), import:
Expand Down
2 changes: 1 addition & 1 deletion doc/testing.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ details on how the stub works).
Add the dependency:

```scala
"com.softwaremill.sttp.tapir" %% "tapir-sttp-stub-server" % "0.13.0"
"com.softwaremill.sttp.tapir" %% "tapir-sttp-stub-server" % "0.13.1"
```

And the following import:
Expand Down
2 changes: 1 addition & 1 deletion version.sbt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version in ThisBuild := "0.13.1-SNAPSHOT"
version in ThisBuild := "0.13.1"

0 comments on commit ae96eb1

Please sign in to comment.