Skip to content

Commit

Permalink
Setting version to 0.7.6
Browse files Browse the repository at this point in the history
  • Loading branch information
softwaremill-ci committed May 2, 2019
1 parent 8f44ae8 commit d4577df
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ tapir documentation is available at [tapir-scala.readthedocs.io](http://tapir-sc
Add the following dependency:

```scala
"com.softwaremill.tapir" %% "tapir-core" % "0.7.5"
"com.softwaremill.tapir" %% "tapir-core" % "0.7.6"
```

You'll need partial unification enabled in the compiler (alternatively, you'll need to manually provide type arguments in some cases):
Expand Down
2 changes: 1 addition & 1 deletion doc/endpoint/json.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ needed for actual json parsing/printing. Currently, [Circe](https://github.com/c
the following dependency to your project:

```scala
"com.softwaremill.tapir" %% "tapir-json-circe" % "0.7.5"
"com.softwaremill.tapir" %% "tapir-json-circe" % "0.7.6"
```

Next, import the package (or extend the `TapirJsonCirce` trait, see [MyTapir](../mytapir.html)):
Expand Down
4 changes: 2 additions & 2 deletions doc/openapi.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
To use, add the following dependencies:

```scala
"com.softwaremill.tapir" %% "tapir-openapi-docs" % "0.7.5"
"com.softwaremill.tapir" %% "tapir-openapi-circe-yaml" % "0.7.5"
"com.softwaremill.tapir" %% "tapir-openapi-docs" % "0.7.6"
"com.softwaremill.tapir" %% "tapir-openapi-circe-yaml" % "0.7.6"
```

Tapir contains a case class-based model of the openapi data structures in the `openapi/openapi-model` subproject (the
Expand Down
2 changes: 1 addition & 1 deletion doc/quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
To use tapir, add the following dependency to your project:

```scala
"com.softwaremill.tapir" %% "tapir-core" % "0.7.5"
"com.softwaremill.tapir" %% "tapir-core" % "0.7.6"
```

This will import only the core classes needed to create endpoint descriptions. To generate a server or a client, you
Expand Down
2 changes: 1 addition & 1 deletion doc/server/akkahttp.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ To expose an endpoint as an [akka-http](https://doc.akka.io/docs/akka-http/curre
dependency:

```scala
"com.softwaremill.tapir" %% "tapir-akka-http-server" % "0.7.5"
"com.softwaremill.tapir" %% "tapir-akka-http-server" % "0.7.6"
```

and import the package:
Expand Down
2 changes: 1 addition & 1 deletion doc/server/http4s.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ To expose an endpoint as an [http4s](https://http4s.org) server, first add the f
dependency:

```scala
"com.softwaremill.tapir" %% "tapir-http4s-server" % "0.7.5"
"com.softwaremill.tapir" %% "tapir-http4s-server" % "0.7.6"
```

and import the package:
Expand Down
2 changes: 1 addition & 1 deletion doc/sttp.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Add the dependency:

```scala
"com.softwaremill.tapir" %% "tapir-sttp-client" % "0.7.5"
"com.softwaremill.tapir" %% "tapir-sttp-client" % "0.7.6"
```

To make requests using an endpoint definition using [sttp](https://github.com/softwaremill/sttp), import:
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.7.6-SNAPSHOT"
version in ThisBuild := "0.7.6"

0 comments on commit d4577df

Please sign in to comment.