diff --git a/airspec/build.sbt b/airspec/build.sbt index b4201e5d1..6eff552c5 100644 --- a/airspec/build.sbt +++ b/airspec/build.sbt @@ -15,7 +15,7 @@ Global / onChangedBuildSource := ReloadOnSourceChanges val SCALA_2_12 = "2.12.19" val SCALA_2_13 = "2.13.13" -val SCALA_3 = "3.3.2" +val SCALA_3 = "3.3.3" val targetScalaVersions = SCALA_3 :: SCALA_2_13 :: SCALA_2_12 :: Nil val SCALACHECK_VERSION = "1.17.0" @@ -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. diff --git a/build.sbt b/build.sbt index 965c7e91b..e5d27a13e 100644 --- a/build.sbt +++ b/build.sbt @@ -3,7 +3,7 @@ import xerial.sbt.pack.PackPlugin.{projectSettings, publishPackArchiveTgz} val SCALA_2_12 = "2.12.19" val SCALA_2_13 = "2.13.13" -val SCALA_3 = "3.3.2" +val SCALA_3 = "3.3.3" val uptoScala2 = SCALA_2_13 :: SCALA_2_12 :: Nil val targetScalaVersions = SCALA_3 :: uptoScala2