Skip to content

Commit

Permalink
Release 0.11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
adamw committed Jul 15, 2024
1 parent 5df1f60 commit 768f285
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,21 +17,21 @@ Add one of the following dependencies:

```scala
// common model classes, including Schema
"com.softwaremill.sttp.apispec" %% "apispec-model" % "0.10.0"
"com.softwaremill.sttp.apispec" %% "apispec-model" % "0.11.0"

// only model classes, root: OpenAPI
"com.softwaremill.sttp.apispec" %% "openapi-model" % "0.10.0"
"com.softwaremill.sttp.apispec" %% "openapi-model" % "0.11.0"
// circe encoders for the model classes
"com.softwaremill.sttp.apispec" %% "openapi-circe" % "0.10.0"
"com.softwaremill.sttp.apispec" %% "openapi-circe" % "0.11.0"
// extension method for OpenAPI to convert to yaml
"com.softwaremill.sttp.apispec" %% "openapi-circe-yaml" % "0.10.0"
"com.softwaremill.sttp.apispec" %% "openapi-circe-yaml" % "0.11.0"

// only model classes, root: AsyncAPI
"com.softwaremill.sttp.apispec" %% "asyncapi-model" % "0.10.0"
"com.softwaremill.sttp.apispec" %% "asyncapi-model" % "0.11.0"
// circe encoders for the model classes
"com.softwaremill.sttp.apispec" %% "asyncapi-circe" % "0.10.0"
"com.softwaremill.sttp.apispec" %% "asyncapi-circe" % "0.11.0"
// extension method for AsyncAPI to convert to yaml
"com.softwaremill.sttp.apispec" %% "asyncapi-circe-yaml" % "0.10.0"
"com.softwaremill.sttp.apispec" %% "asyncapi-circe-yaml" % "0.11.0"
```

sttp apispec is available for Scala 2.12, 2.13, 3, Scala.JS and Scala Native.
Expand All @@ -53,8 +53,8 @@ and choosing one version over the other is a matter of selecting the proper enco

Add dependencies:
```scala
"com.softwaremill.sttp.apispec" %% "openapi-model" % "0.10.0"
"com.softwaremill.sttp.apispec" %% "openapi-circe-yaml" % "0.10.0"
"com.softwaremill.sttp.apispec" %% "openapi-model" % "0.11.0"
"com.softwaremill.sttp.apispec" %% "openapi-circe-yaml" % "0.11.0"
```

Create example OpenAPI models:
Expand Down Expand Up @@ -89,8 +89,8 @@ Usage is the following:

Add dependencies
```scala
"com.softwaremill.sttp.apispec" %% "asyncapi-model" % "0.10.0"
"com.softwaremill.sttp.apispec" %% "asyncapi-circe-yaml" % "0.10.0"
"com.softwaremill.sttp.apispec" %% "asyncapi-model" % "0.11.0"
"com.softwaremill.sttp.apispec" %% "asyncapi-circe-yaml" % "0.11.0"
```

Create an example AsyncAPI model:
Expand Down

0 comments on commit 768f285

Please sign in to comment.