Skip to content

Commit 93e6569

Browse files
committed
Update version in docs
1 parent 48bbd60 commit 93e6569

11 files changed

+26
-26
lines changed

Diff for: examples/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
To run the examples without the rest of the project, add this to your build.sbt:
44

55
```scala
6-
val calibanVersion = "2.9.1"
6+
val calibanVersion = "2.9.2"
77

88
libraryDependencies ++= Seq(
99
"com.github.ghostdogpr" %% "caliban" % calibanVersion,

Diff for: vuepress/docs/docs/README.md

+14-14
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ The design principles of Caliban are the following:
1515
First, add the following dependency to your `build.sbt` file:
1616

1717
```scala
18-
"com.github.ghostdogpr" %% "caliban" % "2.9.1"
18+
"com.github.ghostdogpr" %% "caliban" % "2.9.2"
1919
```
2020

2121
Creating a GraphQL API with Caliban is as simple as creating a case class in Scala.
@@ -77,7 +77,7 @@ The interpreter is not tied any web framework, so you are free to expose this fu
7777
The easiest (and most performant!) way to expose your API over HTTP is to use the optional `caliban-quick` module based on [zio-http](https://github.com/zio/zio-http).
7878

7979
```scala
80-
"com.github.ghostdogpr" %% "caliban-quick" % "2.9.1"
80+
"com.github.ghostdogpr" %% "caliban-quick" % "2.9.2"
8181
```
8282

8383
You can then serve your GraphQL API over HTTP using a single command:
@@ -98,18 +98,18 @@ And that's it - now you have a fully functional GraphQL server running on port 8
9898
If you have any specific server requirements or need to interop with other libraries, Caliban offers a wide range of modules to help you do that.
9999

100100
```scala
101-
"com.github.ghostdogpr" %% "caliban-http4s" % "2.9.1" // routes for http4s
102-
"com.github.ghostdogpr" %% "caliban-akka-http" % "2.9.1" // routes for akka-http
103-
"com.github.ghostdogpr" %% "caliban-pekko-http" % "2.9.1" // routes for pekko-http
104-
"com.github.ghostdogpr" %% "caliban-play" % "2.9.1" // routes for play
105-
106-
"com.github.ghostdogpr" %% "caliban-cats" % "2.9.1" // interop with cats-effect
107-
"com.github.ghostdogpr" %% "caliban-monix" % "2.9.1" // interop with monix
108-
"com.github.ghostdogpr" %% "caliban-tapir" % "2.9.1" // interop with tapir
109-
110-
"com.github.ghostdogpr" %% "caliban-federation" % "2.9.1" // apollo federation
111-
"com.github.ghostdogpr" %% "caliban-reporting" % "2.9.1" // apollo schema reporting
112-
"com.github.ghostdogpr" %% "caliban-tracing" % "2.9.1" // open-telemetry
101+
"com.github.ghostdogpr" %% "caliban-http4s" % "2.9.2" // routes for http4s
102+
"com.github.ghostdogpr" %% "caliban-akka-http" % "2.9.2" // routes for akka-http
103+
"com.github.ghostdogpr" %% "caliban-pekko-http" % "2.9.2" // routes for pekko-http
104+
"com.github.ghostdogpr" %% "caliban-play" % "2.9.2" // routes for play
105+
106+
"com.github.ghostdogpr" %% "caliban-cats" % "2.9.2" // interop with cats-effect
107+
"com.github.ghostdogpr" %% "caliban-monix" % "2.9.2" // interop with monix
108+
"com.github.ghostdogpr" %% "caliban-tapir" % "2.9.2" // interop with tapir
109+
110+
"com.github.ghostdogpr" %% "caliban-federation" % "2.9.2" // apollo federation
111+
"com.github.ghostdogpr" %% "caliban-reporting" % "2.9.2" // apollo schema reporting
112+
"com.github.ghostdogpr" %% "caliban-tracing" % "2.9.2" // open-telemetry
113113
```
114114

115115
## Where to go next?

Diff for: vuepress/docs/docs/adapters.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ without tapir in order to provide the best possible performance.
7676
In order to use it, just add the following to your `build.sbt` file (no other dependencies required!):
7777

7878
```scala
79-
libraryDependencies += "com.github.ghostdogpr" %% "caliban-quick" % "2.9.1"
79+
libraryDependencies += "com.github.ghostdogpr" %% "caliban-quick" % "2.9.2"
8080
```
8181

8282
By adding `import caliban.quick._`, we expose a few convenient extension methods on our `GraphQL` api.

Diff for: vuepress/docs/docs/client-codegen.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ both need to configure in your project to be able to generate you Caliban client
1010

1111
To use any of these two plugins, you'll first need to add following dependency to your `project/plugins.sbt` file:
1212
```scala
13-
addSbtPlugin("com.github.ghostdogpr" % "caliban-codegen-sbt" % "2.9.1")
13+
addSbtPlugin("com.github.ghostdogpr" % "caliban-codegen-sbt" % "2.9.2")
1414
```
1515

1616
## CalibanPlugin

Diff for: vuepress/docs/docs/client.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@ Just like the server module, Caliban Client offers a purely functional interface
1212
To use `caliban-client`, add the following dependency to your `build.sbt` file:
1313

1414
```scala
15-
"com.github.ghostdogpr" %% "caliban-client" % "2.9.1"
15+
"com.github.ghostdogpr" %% "caliban-client" % "2.9.2"
1616
```
1717

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

2020
```scala
21-
"com.github.ghostdogpr" %%% "caliban-client" % "2.9.1"
21+
"com.github.ghostdogpr" %%% "caliban-client" % "2.9.2"
2222
```
2323

2424
## Code generation
@@ -28,7 +28,7 @@ simple sbt command, but you can look at the [Code generation](client-codegen.md)
2828

2929
You'll first need to add following dependency to your `project/plugins.sbt` file:
3030
```scala
31-
addSbtPlugin("com.github.ghostdogpr" % "caliban-codegen-sbt" % "2.9.1")
31+
addSbtPlugin("com.github.ghostdogpr" % "caliban-codegen-sbt" % "2.9.2")
3232
```
3333

3434
And to enable the plugin in your `build.sbt` file:

Diff for: vuepress/docs/docs/federation.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
To use, add the following dependency to your `build.sbt` file:
1010

1111
```scala
12-
"com.github.ghostdogpr" %% "caliban-federation" % "2.9.1"
12+
"com.github.ghostdogpr" %% "caliban-federation" % "2.9.2"
1313
```
1414

1515
## Federating

Diff for: vuepress/docs/docs/laminext.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ It is depending on [Laminext](https://laminext.dev), a library that provides nic
55

66
To use it, import the `caliban-client-laminext` module:
77
```scala
8-
"com.github.ghostdogpr" %%% "caliban-client-laminext" % "2.9.1"
8+
"com.github.ghostdogpr" %%% "caliban-client-laminext" % "2.9.2"
99
```
1010

1111
Add the following import to your code:

Diff for: vuepress/docs/docs/middleware.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ Caliban ships with support for OpenTelemetry tracing via integration with [zio-t
237237
In order to use tracing, first add `caliban-tracing` to your `built.sbt`.
238238

239239
```scala
240-
"com.github.ghostdogpr" %% "caliban-tracing" % "2.9.1"
240+
"com.github.ghostdogpr" %% "caliban-tracing" % "2.9.2"
241241
```
242242

243243
Then add it to your schema as any other wrapper:

Diff for: vuepress/docs/docs/server-codegen.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ If you want a workflow where you first edit a GraphQL schema file, and then gene
44

55
You'll first need to add the following dependency to your `project/plugins.sbt` file:
66
```scala
7-
addSbtPlugin("com.github.ghostdogpr" % "caliban-codegen-sbt" % "2.9.1")
7+
addSbtPlugin("com.github.ghostdogpr" % "caliban-codegen-sbt" % "2.9.2")
88
```
99

1010
You then enable it in your `build.sbt` file:

Diff for: vuepress/docs/docs/stitching.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ You should also be careful when using stitching since it's very easy to pull in
1111
In order to use stitching, add `caliban-tools` to your dependencies:
1212

1313
```scala
14-
"com.github.ghostdogpr" %% "caliban-tools" % "2.9.1"
14+
"com.github.ghostdogpr" %% "caliban-tools" % "2.9.2"
1515
```
1616

1717
## Stitching in Action

Diff for: vuepress/docs/docs/tools.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@ Caliban comes with a module called `caliban-tools` that exposes some useful feat
99
## Dependency
1010

1111
```scala
12-
"com.github.ghostdogpr" %% "caliban-tools" % "2.9.1"
12+
"com.github.ghostdogpr" %% "caliban-tools" % "2.9.2"
1313
```

0 commit comments

Comments
 (0)