Skip to content

Commit

Permalink
Update version in docs
Browse files Browse the repository at this point in the history
  • Loading branch information
ghostdogpr committed Jul 11, 2020
1 parent e04ef89 commit 401cd93
Show file tree
Hide file tree
Showing 6 changed files with 24 additions and 24 deletions.
20 changes: 10 additions & 10 deletions examples/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,17 @@ To run the examples without the rest of the project, add this to your build.sbt:

```scala
libraryDependencies ++= Seq(
"com.github.ghostdogpr" %% "caliban" % "0.8.3",
"com.github.ghostdogpr" %% "caliban-http4s" % "0.8.3",
"com.github.ghostdogpr" %% "caliban-play" % "0.8.3",
"com.github.ghostdogpr" %% "caliban-akka-http" % "0.8.3",
"com.github.ghostdogpr" %% "caliban" % "0.9.0",
"com.github.ghostdogpr" %% "caliban-http4s" % "0.9.0",
"com.github.ghostdogpr" %% "caliban-play" % "0.9.0",
"com.github.ghostdogpr" %% "caliban-akka-http" % "0.9.0",
"de.heikoseeberger" %% "akka-http-circe" % "1.32.0",
"com.github.ghostdogpr" %% "caliban-cats" % "0.8.3",
"com.github.ghostdogpr" %% "caliban-monix" % "0.8.3",
"com.github.ghostdogpr" %% "caliban-finch" % "0.8.3",
"com.github.ghostdogpr" %% "caliban-uzhttp" % "0.8.3",
"com.github.ghostdogpr" %% "caliban-federation" % "0.8.3",
"com.github.ghostdogpr" %% "caliban-tapir" % "0.8.3",
"com.github.ghostdogpr" %% "caliban-cats" % "0.9.0",
"com.github.ghostdogpr" %% "caliban-monix" % "0.9.0",
"com.github.ghostdogpr" %% "caliban-finch" % "0.9.0",
"com.github.ghostdogpr" %% "caliban-uzhttp" % "0.9.0",
"com.github.ghostdogpr" %% "caliban-federation" % "0.9.0",
"com.github.ghostdogpr" %% "caliban-tapir" % "0.9.0",
"com.softwaremill.sttp.tapir" %% "tapir-json-circe" % "0.14.3",
"io.circe" %% "circe-generic" % "0.13.0"
)
Expand Down
18 changes: 9 additions & 9 deletions vuepress/docs/docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,20 +16,20 @@ Caliban can also be used to build GraphQL frontends: see the [dedicated section]
To use `caliban`, add the following line in your `build.sbt` file:

```
libraryDependencies += "com.github.ghostdogpr" %% "caliban" % "0.8.3"
libraryDependencies += "com.github.ghostdogpr" %% "caliban" % "0.9.0"
```

The following modules are optional:

```
libraryDependencies += "com.github.ghostdogpr" %% "caliban-http4s" % "0.8.3" // routes for http4s
libraryDependencies += "com.github.ghostdogpr" %% "caliban-akka-http" % "0.8.3" // routes for akka-http
libraryDependencies += "com.github.ghostdogpr" %% "caliban-play" % "0.8.3" // routes for play
libraryDependencies += "com.github.ghostdogpr" %% "caliban-finch" % "0.8.3" // routes for finch
libraryDependencies += "com.github.ghostdogpr" %% "caliban-uzhttp" % "0.8.3" // routes for uzhttp
libraryDependencies += "com.github.ghostdogpr" %% "caliban-cats" % "0.8.3" // interop with cats effect
libraryDependencies += "com.github.ghostdogpr" %% "caliban-monix" % "0.8.3" // interop with monix
libraryDependencies += "com.github.ghostdogpr" %% "caliban-federation" % "0.8.3" // interop with apollo federation
libraryDependencies += "com.github.ghostdogpr" %% "caliban-http4s" % "0.9.0" // routes for http4s
libraryDependencies += "com.github.ghostdogpr" %% "caliban-akka-http" % "0.9.0" // routes for akka-http
libraryDependencies += "com.github.ghostdogpr" %% "caliban-play" % "0.9.0" // routes for play
libraryDependencies += "com.github.ghostdogpr" %% "caliban-finch" % "0.9.0" // routes for finch
libraryDependencies += "com.github.ghostdogpr" %% "caliban-uzhttp" % "0.9.0" // routes for uzhttp
libraryDependencies += "com.github.ghostdogpr" %% "caliban-cats" % "0.9.0" // interop with cats effect
libraryDependencies += "com.github.ghostdogpr" %% "caliban-monix" % "0.9.0" // interop with monix
libraryDependencies += "com.github.ghostdogpr" %% "caliban-federation" % "0.9.0" // interop with apollo federation
```

## A simple example
Expand Down
4 changes: 2 additions & 2 deletions vuepress/docs/docs/client.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Just like Caliban, `caliban-client` offers a purely functional interface and kee
To use `caliban-client`, add the following line in your `build.sbt` file:

```
libraryDependencies += "com.github.ghostdogpr" %% "caliban-client" % "0.8.3"
libraryDependencies += "com.github.ghostdogpr" %% "caliban-client" % "0.9.0"
```

Caliban-client is available for ScalaJS.
Expand All @@ -24,7 +24,7 @@ The first step for building GraphQL queries with `caliban-client` is to generate
To use this feature, add the `caliban-codegen-sbt` sbt plugin to your project and enable it.

```scala
addSbtPlugin("com.github.ghostdogpr" % "caliban-codegen-sbt" % "0.8.3")
addSbtPlugin("com.github.ghostdogpr" % "caliban-codegen-sbt" % "0.9.0")
enablePlugins(CodegenPlugin)
```
Then call the `calibanGenClient` sbt command.
Expand Down
2 changes: 1 addition & 1 deletion vuepress/docs/docs/federation.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
To use, add the following line to your `build.sbt` file:

```
libraryDependencies += "com.github.ghostdogpr" %% "caliban-federation" % "0.8.3"
libraryDependencies += "com.github.ghostdogpr" %% "caliban-federation" % "0.9.0"
```

## Federating
Expand Down
2 changes: 1 addition & 1 deletion vuepress/docs/docs/schema.md
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ Caliban can automatically generate Scala code from a GraphQL schema.
In order to use this feature, add the `caliban-codegen-sbt` sbt plugin to your project and enable it.

```scala
addSbtPlugin("com.github.ghostdogpr" % "caliban-codegen-sbt" % "0.8.3")
addSbtPlugin("com.github.ghostdogpr" % "caliban-codegen-sbt" % "0.9.0")
enablePlugins(CodegenPlugin)
```
Then call the `calibanGenSchema` sbt command.
Expand Down
2 changes: 1 addition & 1 deletion vuepress/docs/docs/tools.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Caliban comes with a module called `caliban-tools` that exposes some useful feat
## Dependency

```
libraryDependencies += "com.github.ghostdogpr" %% "caliban-tools" % "0.8.3"
libraryDependencies += "com.github.ghostdogpr" %% "caliban-tools" % "0.9.0"
```

## Schema comparison
Expand Down

0 comments on commit 401cd93

Please sign in to comment.