Skip to content

Commit 8a17005

Browse files
Setting version to 0.12.3
1 parent 3aa0dd4 commit 8a17005

File tree

9 files changed

+19
-19
lines changed

9 files changed

+19
-19
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ tapir documentation is available at [tapir-scala.readthedocs.io](http://tapir-sc
7474
Add the following dependency:
7575

7676
```scala
77-
"com.softwaremill.sttp.tapir" %% "tapir-core" % "0.12.2"
77+
"com.softwaremill.sttp.tapir" %% "tapir-core" % "0.12.3"
7878
```
7979

8080
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
@@ -9,7 +9,7 @@ needed for actual json parsing/printing. Currently, [Circe](https://github.com/c
99
To use Circe add the following dependency to your project:
1010

1111
```scala
12-
"com.softwaremill.sttp.tapir" %% "tapir-json-circe" % "0.12.2"
12+
"com.softwaremill.sttp.tapir" %% "tapir-json-circe" % "0.12.3"
1313
```
1414

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

7676
```scala
77-
"com.softwaremill.sttp.tapir" %% "tapir-json-upickle" % "0.12.2"
77+
"com.softwaremill.sttp.tapir" %% "tapir-json-upickle" % "0.12.3"
7878
```
7979

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

110110
```scala
111-
"com.softwaremill.sttp.tapir" %% "tapir-json-play" % "0.12.2"
111+
"com.softwaremill.sttp.tapir" %% "tapir-json-play" % "0.12.3"
112112
```
113113

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

126126
```scala
127-
"com.softwaremill.sttp.tapir" %% "tapir-json-spray" % "0.12.2"
127+
"com.softwaremill.sttp.tapir" %% "tapir-json-spray" % "0.12.3"
128128
```
129129

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

doc/openapi.md

+6-6
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.12.2"
7-
"com.softwaremill.sttp.tapir" %% "tapir-openapi-circe-yaml" % "0.12.2"
6+
"com.softwaremill.sttp.tapir" %% "tapir-openapi-docs" % "0.12.3"
7+
"com.softwaremill.sttp.tapir" %% "tapir-openapi-circe-yaml" % "0.12.3"
88
```
99

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

5151
```scala
52-
"com.softwaremill.sttp.tapir" %% "tapir-swagger-ui-akka-http" % "0.12.2"
53-
"com.softwaremill.sttp.tapir" %% "tapir-swagger-ui-http4s" % "0.12.2"
54-
"com.softwaremill.sttp.tapir" %% "tapir-redoc-http4s" % "0.12.2"
52+
"com.softwaremill.sttp.tapir" %% "tapir-swagger-ui-akka-http" % "0.12.3"
53+
"com.softwaremill.sttp.tapir" %% "tapir-swagger-ui-http4s" % "0.12.3"
54+
"com.softwaremill.sttp.tapir" %% "tapir-redoc-http4s" % "0.12.3"
5555
```
5656

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

6060
```scala
61-
"com.softwaremill.sttp.tapir" %% "tapir-swagger-ui-akka-http" % "0.12.2" exclude("com.typesafe.akka", "akka-stream_2.12")
61+
"com.softwaremill.sttp.tapir" %% "tapir-swagger-ui-akka-http" % "0.12.3" exclude("com.typesafe.akka", "akka-stream_2.12")
6262
```
6363

6464
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.12.2"
6+
"com.softwaremill.sttp.tapir" %% "tapir-core" % "0.12.3"
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.12.2"
7+
"com.softwaremill.sttp.tapir" %% "tapir-akka-http-server" % "0.12.3"
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.12.2" exclude("com.typesafe.akka", "akka-stream_2.12")
14+
"com.softwaremill.sttp.tapir" %% "tapir-akka-http-server" % "0.12.3" exclude("com.typesafe.akka", "akka-stream_2.12")
1515
```
1616

1717

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.12.2"
7+
"com.softwaremill.sttp.tapir" %% "tapir-finatra-server" % "0.12.3"
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-support" % "0.12.2"
19+
"com.softwaremill.sttp.tapir" %% "tapir-finatra-server-cats-support" % "0.12.3"
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.12.2"
7+
"com.softwaremill.sttp.tapir" %% "tapir-http4s-server" % "0.12.3"
88
```
99

1010
and import the package:

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.12.2"
6+
"com.softwaremill.sttp.tapir" %% "tapir-sttp-client" % "0.12.3"
77
```
88

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

version.sbt

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

0 commit comments

Comments
 (0)