Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update scala3-staging, ... to 3.3.2 #3375

Merged
merged 3 commits into from
Feb 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions airspec/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Global / onChangedBuildSource := ReloadOnSourceChanges

val SCALA_2_12 = "2.12.18"
val SCALA_2_13 = "2.13.12"
val SCALA_3 = "3.3.1"
val SCALA_3 = "3.3.2"
val targetScalaVersions = SCALA_3 :: SCALA_2_13 :: SCALA_2_12 :: Nil

val SCALACHECK_VERSION = "1.17.0"
Expand Down Expand Up @@ -130,8 +130,7 @@ def excludePomDependency(excludes: Seq[String]) = { node: XmlNode =>
}).transform(node).head
}

/**
* AirSpec build definitions.
/** AirSpec build definitions.
*
* To make AirSpec a standalone library without any cyclic project references, AirSpec embeds the source code of
* airframe-log, di, surface, etc.
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import xerial.sbt.pack.PackPlugin.publishPackArchiveTgz

val SCALA_2_12 = "2.12.18"
val SCALA_2_13 = "2.13.12"
val SCALA_3 = "3.3.1"
val SCALA_3 = "3.3.2"
val uptoScala2 = SCALA_2_13 :: SCALA_2_12 :: Nil
val targetScalaVersions = SCALA_3 :: uptoScala2

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ ThisBuild / libraryDependencySchemes += "org.scala-lang.modules" %% "scala-parse

ThisBuild / resolvers ++= Resolver.sonatypeOssRepos("snapshots")

ThisBuild / scalaVersion := "3.3.1"
ThisBuild / scalaVersion := "3.3.2"

lazy val root =
project.aggregate(spi, server)
Expand Down
2 changes: 1 addition & 1 deletion sbt-airframe/src/sbt-test/sbt-airframe/grpc/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ val buildSettings: Seq[Def.Setting[_]] = Seq(
libraryDependencies += "org.wvlet.airframe" %% "airspec" % AIRSPEC_VERSION % Test
)
ThisBuild / resolvers ++= Resolver.sonatypeOssRepos("snapshots")
ThisBuild / scalaVersion := "3.3.1"
ThisBuild / scalaVersion := "3.3.2"

lazy val root =
project
Expand Down
2 changes: 1 addition & 1 deletion sbt-airframe/src/sbt-test/sbt-airframe/js-client/build.sbt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
ThisBuild / resolvers ++= Resolver.sonatypeOssRepos("snapshots")

ThisBuild / scalaVersion := "3.3.1"
ThisBuild / scalaVersion := "3.3.2"

lazy val root =
project.aggregate(spi.js, client.js)
Expand Down
2 changes: 1 addition & 1 deletion sbt-airframe/src/sbt-test/sbt-airframe/openapi/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ enablePlugins(AirframeHttpPlugin)
name := "Open API Test"
version := "1.0.0"

ThisBuild / scalaVersion := "3.3.1"
ThisBuild / scalaVersion := "3.3.2"

airframeHttpOpenAPIPackages := Seq("example.api")
airframeHttpOpts := "-l debug"
Expand Down
2 changes: 1 addition & 1 deletion sbt-airframe/src/sbt-test/sbt-airframe/rpc-netty/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ val buildSettings: Seq[Def.Setting[_]] = Seq(
libraryDependencies += "org.wvlet.airframe" %% "airspec" % AIRSPEC_VERSION % Test
)

ThisBuild / scalaVersion := "3.3.1"
ThisBuild / scalaVersion := "3.3.2"

lazy val root =
project.aggregate(api, server)
Expand Down
Loading