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 Dec 15, 2021
1 parent a1ca35b commit 89ca0f4
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 17 deletions.
18 changes: 9 additions & 9 deletions vuepress/docs/docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,20 +15,20 @@ The design principles of Caliban are the following:
To use `caliban`, add the following line in your `build.sbt` file:

```
libraryDependencies += "com.github.ghostdogpr" %% "caliban" % "1.3.0"
libraryDependencies += "com.github.ghostdogpr" %% "caliban" % "1.3.1"
```

The following modules are optional:

```
libraryDependencies += "com.github.ghostdogpr" %% "caliban-http4s" % "1.3.0" // routes for http4s
libraryDependencies += "com.github.ghostdogpr" %% "caliban-akka-http" % "1.3.0" // routes for akka-http
libraryDependencies += "com.github.ghostdogpr" %% "caliban-play" % "1.3.0" // routes for play
libraryDependencies += "com.github.ghostdogpr" %% "caliban-zio-http" % "1.3.0" // routes for zio-http
libraryDependencies += "com.github.ghostdogpr" %% "caliban-cats" % "1.3.0" // interop with cats effect
libraryDependencies += "com.github.ghostdogpr" %% "caliban-monix" % "1.3.0" // interop with monix
libraryDependencies += "com.github.ghostdogpr" %% "caliban-tapir" % "1.3.0" // interop with tapir
libraryDependencies += "com.github.ghostdogpr" %% "caliban-federation" % "1.3.0" // interop with apollo federation
libraryDependencies += "com.github.ghostdogpr" %% "caliban-http4s" % "1.3.1" // routes for http4s
libraryDependencies += "com.github.ghostdogpr" %% "caliban-akka-http" % "1.3.1" // routes for akka-http
libraryDependencies += "com.github.ghostdogpr" %% "caliban-play" % "1.3.1" // routes for play
libraryDependencies += "com.github.ghostdogpr" %% "caliban-zio-http" % "1.3.1" // routes for zio-http
libraryDependencies += "com.github.ghostdogpr" %% "caliban-cats" % "1.3.1" // interop with cats effect
libraryDependencies += "com.github.ghostdogpr" %% "caliban-monix" % "1.3.1" // interop with monix
libraryDependencies += "com.github.ghostdogpr" %% "caliban-tapir" % "1.3.1" // interop with tapir
libraryDependencies += "com.github.ghostdogpr" %% "caliban-federation" % "1.3.1" // interop with apollo federation
```

## A simple example
Expand Down
8 changes: 4 additions & 4 deletions vuepress/docs/docs/client.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@ 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" % "1.3.0"
libraryDependencies += "com.github.ghostdogpr" %% "caliban-client" % "1.3.1"
```

Caliban-client is available for ScalaJS. To use it in a ScalaJS project, instead add this line to your `build.sbt` file:

```
libraryDependencies += "com.github.ghostdogpr" %%% "caliban-client" % "1.3.0"
libraryDependencies += "com.github.ghostdogpr" %%% "caliban-client" % "1.3.1"
```

## Code generation
Expand All @@ -33,7 +33,7 @@ both need to configure in your project to be able to generate you Caliban client

To use any of these two plugins, you'll first need to add following dependency to your `project/plugins.sbt` file:
```scala
addSbtPlugin("com.github.ghostdogpr" % "caliban-codegen-sbt" % "1.3.0")
addSbtPlugin("com.github.ghostdogpr" % "caliban-codegen-sbt" % "1.3.1")
```

### CalibanPlugin
Expand Down Expand Up @@ -475,7 +475,7 @@ It is depending on [Laminext](https://laminext.dev), a library that provides nic

To use it, import the `caliban-client-laminext` module:
```
libraryDependencies += "com.github.ghostdogpr" %%% "caliban-client-laminext" % "1.3.0"
libraryDependencies += "com.github.ghostdogpr" %%% "caliban-client-laminext" % "1.3.1"
```

Add the following import to your code:
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" % "1.3.0"
libraryDependencies += "com.github.ghostdogpr" %% "caliban-federation" % "1.3.1"
```

## 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 @@ -275,7 +275,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/plugins.sbt` file:
```scala
addSbtPlugin("com.github.ghostdogpr" % "caliban-codegen-sbt" % "1.3.0")
addSbtPlugin("com.github.ghostdogpr" % "caliban-codegen-sbt" % "1.3.1")
```

And enable it in your `build.sbt` file:
Expand Down
2 changes: 1 addition & 1 deletion vuepress/docs/docs/stitching.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ You should also be careful when using stitching since it's very easy to pull in
In order to use stitching, add `caliban-tools` to your dependencies:

```scala
libraryDependencies += "com.github.ghostdogpr" %% "caliban-tools" % "1.3.0"
libraryDependencies += "com.github.ghostdogpr" %% "caliban-tools" % "1.3.1"
```

## Stitching in Action
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 @@ -9,7 +9,7 @@ Caliban comes with a module called `caliban-tools` that exposes some useful feat
## Dependency

```
libraryDependencies += "com.github.ghostdogpr" %% "caliban-tools" % "1.3.0"
libraryDependencies += "com.github.ghostdogpr" %% "caliban-tools" % "1.3.1"
```

## Schema comparison
Expand Down

0 comments on commit 89ca0f4

Please sign in to comment.