Skip to content

Commit

Permalink
Setting version to 0.0.11
Browse files Browse the repository at this point in the history
  • Loading branch information
softwaremill-ci committed Feb 13, 2019
1 parent 8c1a57d commit aa0a756
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ Also check out the [runnable example](https://github.com/softwaremill/tapir/blob
To use tapir, add the following dependency to your project:

```scala
"com.softwaremill.tapir" %% "tapir-core" % "0.0.10"
"com.softwaremill.tapir" %% "tapir-core" % "0.0.11"
```

This will import only the core classes. To generate a server or a client, you will need to add further dependencies.
Expand Down Expand Up @@ -172,7 +172,7 @@ implicit val customConfiguration = Configuration.defaults.snakeCaseTransformatio
#### Working with json

```scala
"com.softwaremill.tapir" %% "tapir-json-circe" % "0.0.10"
"com.softwaremill.tapir" %% "tapir-json-circe" % "0.0.11"
```

The package:
Expand All @@ -186,7 +186,7 @@ contains codecs which, given a circe `Encoder`/`Decoder` in scope, will generate
## Running as an akka-http server

```scala
"com.softwaremill.tapir" %% "tapir-akka-http-server" % "0.0.10"
"com.softwaremill.tapir" %% "tapir-akka-http-server" % "0.0.11"
```

To expose an endpoint as an [akka-http](https://doc.akka.io/docs/akka-http/current/) server, import the package:
Expand Down Expand Up @@ -219,7 +219,7 @@ Only the first failure is passed to the `DecodeFailureHandler`. Inputs are decod
## Using as an sttp client

```scala
"com.softwaremill.tapir" %% "tapir-sttp-client" % "0.0.10"
"com.softwaremill.tapir" %% "tapir-sttp-client" % "0.0.11"
```

To make requests using an endpoint definition using [sttp](https://sttp.readthedocs.io), import:
Expand All @@ -239,8 +239,8 @@ After providing the input parameters, the result is a description of the request
## Generating documentation

```scala
"com.softwaremill.tapir" %% "tapir-openapi-docs" % "0.0.10"
"com.softwaremill.tapir" %% "tapir-openapi-circe-yaml" % "0.0.10"
"com.softwaremill.tapir" %% "tapir-openapi-docs" % "0.0.11"
"com.softwaremill.tapir" %% "tapir-openapi-circe-yaml" % "0.0.11"
```

Tapir contains a case class-based model of the openapi data structures in the `openapi/openapi-model` subproject. An endpoint can be converted to an instance of the model by importing the package and calling an extension method:
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.0.11-SNAPSHOT"
version in ThisBuild := "0.0.11"

0 comments on commit aa0a756

Please sign in to comment.