Skip to content

Commit ae96eb1

Browse files
Setting version to 0.13.1
1 parent da237ed commit ae96eb1

File tree

11 files changed

+22
-22
lines changed

11 files changed

+22
-22
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ tapir documentation is available at [tapir.softwaremill.com](http://tapir.softwa
7575
Add the following dependency:
7676

7777
```scala
78-
"com.softwaremill.sttp.tapir" %% "tapir-core" % "0.13.0"
78+
"com.softwaremill.sttp.tapir" %% "tapir-core" % "0.13.1"
7979
```
8080

8181
You'll need partial unification enabled in the compiler (alternatively, you'll need to manually provide type arguments in some cases):

doc/endpoint/json.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ the json codec that is in scope.
1919
To use Circe add the following dependency to your project:
2020

2121
```scala
22-
"com.softwaremill.sttp.tapir" %% "tapir-json-circe" % "0.13.0"
22+
"com.softwaremill.sttp.tapir" %% "tapir-json-circe" % "0.13.1"
2323
```
2424

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

8989
```scala
90-
"com.softwaremill.sttp.tapir" %% "tapir-json-upickle" % "0.13.0"
90+
"com.softwaremill.sttp.tapir" %% "tapir-json-upickle" % "0.13.1"
9191
```
9292

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

123123
```scala
124-
"com.softwaremill.sttp.tapir" %% "tapir-json-play" % "0.13.0"
124+
"com.softwaremill.sttp.tapir" %% "tapir-json-play" % "0.13.1"
125125
```
126126

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

139139
```scala
140-
"com.softwaremill.sttp.tapir" %% "tapir-json-spray" % "0.13.0"
140+
"com.softwaremill.sttp.tapir" %% "tapir-json-spray" % "0.13.1"
141141
```
142142

143143
Next, import the package (or extend the `TapirJsonSpray` trait, see [MyTapir](../mytapir.html) and add `TapirJsonSpray` not `TapirCirceJson`):

doc/openapi.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
To use, add the following dependencies:
44

55
```scala
6-
"com.softwaremill.sttp.tapir" %% "tapir-openapi-docs" % "0.13.0"
7-
"com.softwaremill.sttp.tapir" %% "tapir-openapi-circe-yaml" % "0.13.0"
6+
"com.softwaremill.sttp.tapir" %% "tapir-openapi-docs" % "0.13.1"
7+
"com.softwaremill.sttp.tapir" %% "tapir-openapi-circe-yaml" % "0.13.1"
88
```
99

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

6565
```scala
66-
"com.softwaremill.sttp.tapir" %% "tapir-swagger-ui-akka-http" % "0.13.0"
67-
"com.softwaremill.sttp.tapir" %% "tapir-redoc-akka-http" % "0.13.0"
68-
"com.softwaremill.sttp.tapir" %% "tapir-swagger-ui-http4s" % "0.13.0"
69-
"com.softwaremill.sttp.tapir" %% "tapir-redoc-http4s" % "0.13.0"
66+
"com.softwaremill.sttp.tapir" %% "tapir-swagger-ui-akka-http" % "0.13.1"
67+
"com.softwaremill.sttp.tapir" %% "tapir-redoc-akka-http" % "0.13.1"
68+
"com.softwaremill.sttp.tapir" %% "tapir-swagger-ui-http4s" % "0.13.1"
69+
"com.softwaremill.sttp.tapir" %% "tapir-redoc-http4s" % "0.13.1"
7070
```
7171

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

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

7979
Usage example for akka-http:

doc/quickstart.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
To use tapir, add the following dependency to your project:
44

55
```scala
6-
"com.softwaremill.sttp.tapir" %% "tapir-core" % "0.13.0"
6+
"com.softwaremill.sttp.tapir" %% "tapir-core" % "0.13.1"
77
```
88

99
This will import only the core classes needed to create endpoint descriptions. To generate a server or a client, you

doc/server/akkahttp.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@ To expose an endpoint as an [akka-http](https://doc.akka.io/docs/akka-http/curre
44
dependency:
55

66
```scala
7-
"com.softwaremill.sttp.tapir" %% "tapir-akka-http-server" % "0.13.0"
7+
"com.softwaremill.sttp.tapir" %% "tapir-akka-http-server" % "0.13.1"
88
```
99

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

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

1717
Now import the package:

doc/server/finatra.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ To expose an endpoint as an [finatra](https://twitter.github.io/finatra/) server
44
dependency:
55

66
```scala
7-
"com.softwaremill.sttp.tapir" %% "tapir-finatra-server" % "0.13.0"
7+
"com.softwaremill.sttp.tapir" %% "tapir-finatra-server" % "0.13.1"
88
```
99

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

1818
```scala
19-
"com.softwaremill.sttp.tapir" %% "tapir-finatra-server-cats" % "0.13.0"
19+
"com.softwaremill.sttp.tapir" %% "tapir-finatra-server-cats" % "0.13.1"
2020
```
2121

2222
and import the packate:

doc/server/http4s.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ To expose an endpoint as an [http4s](https://http4s.org) server, first add the f
44
dependency:
55

66
```scala
7-
"com.softwaremill.sttp.tapir" %% "tapir-http4s-server" % "0.13.0"
7+
"com.softwaremill.sttp.tapir" %% "tapir-http4s-server" % "0.13.1"
88
```
99

1010
and import the package:

doc/server/play.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
To expose endpoint as a [play-server](https://www.playframework.com/) first add the following dependencies:
44
```scala
5-
"com.softwaremill.sttp.tapir" %% "tapir-play-server" % "0.13.0"
5+
"com.softwaremill.sttp.tapir" %% "tapir-play-server" % "0.13.1"
66
```
77
and
88
```scala

doc/sttp.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Add the dependency:
44

55
```scala
6-
"com.softwaremill.sttp.tapir" %% "tapir-sttp-client" % "0.13.0"
6+
"com.softwaremill.sttp.tapir" %% "tapir-sttp-client" % "0.13.1"
77
```
88

99
To make requests using an endpoint definition using the [sttp client](https://github.com/softwaremill/sttp), import:

doc/testing.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ details on how the stub works).
1212
Add the dependency:
1313

1414
```scala
15-
"com.softwaremill.sttp.tapir" %% "tapir-sttp-stub-server" % "0.13.0"
15+
"com.softwaremill.sttp.tapir" %% "tapir-sttp-stub-server" % "0.13.1"
1616
```
1717

1818
And the following import:

version.sbt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version in ThisBuild := "0.13.1-SNAPSHOT"
1+
version in ThisBuild := "0.13.1"

0 commit comments

Comments
 (0)