@@ -9,7 +9,7 @@ needed for actual json parsing/printing. Currently, [Circe](https://github.com/c
9
9
To use Circe add the following dependency to your project:
10
10
11
11
``` scala
12
- " com.softwaremill.sttp.tapir" %% " tapir-json-circe" % " 0.12.2 "
12
+ " com.softwaremill.sttp.tapir" %% " tapir-json-circe" % " 0.12.3 "
13
13
```
14
14
15
15
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
74
74
To use µPickle add the following dependency to your project:
75
75
76
76
``` scala
77
- " com.softwaremill.sttp.tapir" %% " tapir-json-upickle" % " 0.12.2 "
77
+ " com.softwaremill.sttp.tapir" %% " tapir-json-upickle" % " 0.12.3 "
78
78
```
79
79
80
80
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
108
108
To use Play JSON add the following dependency to your project:
109
109
110
110
``` scala
111
- " com.softwaremill.sttp.tapir" %% " tapir-json-play" % " 0.12.2 "
111
+ " com.softwaremill.sttp.tapir" %% " tapir-json-play" % " 0.12.3 "
112
112
```
113
113
114
114
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
124
124
To use Spray JSON add the following dependency to your project:
125
125
126
126
``` scala
127
- " com.softwaremill.sttp.tapir" %% " tapir-json-spray" % " 0.12.2 "
127
+ " com.softwaremill.sttp.tapir" %% " tapir-json-spray" % " 0.12.3 "
128
128
```
129
129
130
130
Next, import the package (or extend the ` TapirJsonSpray ` trait, see [ MyTapir] ( ../mytapir.html ) and add ` TapirJsonSpray ` not ` TapirCirceJson ` ):
0 commit comments