We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 741113f commit 578c269Copy full SHA for 578c269
build.sbt
@@ -1,8 +1,8 @@
1
import sbt.Keys.test
2
3
// Supported versions
4
-val scala212 = "2.12.15"
5
-val scala213 = "2.13.10"
+val scala212 = "2.12.18"
+val scala213 = "2.13.11"
6
val scala3 = "3.2.2"
7
8
ThisBuild / organization := "io.cequence"
openai-client/build.sbt
@@ -6,8 +6,8 @@ lazy val playWsVersion = settingKey[String]("Play WS version to use")
playWsVersion := {
scalaVersion.value match {
9
- case "2.12.15" => "2.1.10"
10
- case "2.13.10" => "2.2.0-M3"
+ case "2.12.18" => "2.1.10"
+ case "2.13.11" => "2.2.0-M3"
11
case "3.2.2" => "2.2.0-M2" // Version "2.2.0-M3" was produced by an unstable release: Scala 3.3.0-RC3
12
case _ => "2.1.10"
13
}
0 commit comments