Skip to content

Commit

Permalink
Upgrade Scala to 3.3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
davesmith00000 committed Apr 9, 2024
1 parent 1ba14e7 commit 8f33a7c
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 7 deletions.
4 changes: 2 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ ThisBuild / versionScheme := Some("early-semver")
ThisBuild / scalaVersion := scala3Version

lazy val tyrianVersion = TyrianVersion.getVersion
lazy val scala3Version = "3.3.1"
lazy val scala3Version = "3.3.3"
lazy val tyrianDocsVersion = "0.10.0"
lazy val scalaJsDocsVersion = "1.16.0"
lazy val scalaDocsVersion = "3.3.1"
lazy val scalaDocsVersion = "3.3.3"
lazy val indigoDocsVersion = "0.16.0"

lazy val commonSettings: Seq[sbt.Def.Setting[_]] = Seq(
Expand Down
2 changes: 1 addition & 1 deletion examples/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import sbtwelcome._
Global / onChangedBuildSource := ReloadOnSourceChanges

lazy val tyrianVersion = TyrianVersion.getVersion
lazy val scala3Version = "3.3.1"
lazy val scala3Version = "3.3.3"

lazy val commonSettings: Seq[sbt.Def.Setting[_]] = Seq(
version := tyrianVersion,
Expand Down
3 changes: 2 additions & 1 deletion examples/mill/build.sc
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ import $ivy.`io.github.davidgregory084::mill-tpolecat::0.3.5`
import io.github.davidgregory084.TpolecatModule

object counter extends ScalaJSModule with TpolecatModule {
def scalaVersion = "3.3.1"

def scalaVersion = "3.3.3"
def scalaJSVersion = "1.16.0"

def buildSite() =
Expand Down
2 changes: 1 addition & 1 deletion examples/server-examples/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ val LogbackVersion = "1.2.6"
val MunitCatsEffectVersion = "1.0.6"

lazy val tyrianVersion = TyrianVersion.getVersion
lazy val scala3Version = "3.3.1"
lazy val scala3Version = "3.3.3"

Global / onChangedBuildSource := ReloadOnSourceChanges

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ object Routes:
case request @ GET -> Root / "spa.js" =>
val spa = fs2.io.file.Path(
"."
) / "spa" / "target" / "scala-3.3.1" / "spa-opt" / "main.js"
) / "spa" / "target" / "scala-3.3.3" / "spa-opt" / "main.js"
StaticFile.fromPath(spa.absolute, Some(request)).getOrElseF(NotFound(spa.absolute.toString))

case GET -> Root / "ssr" / in =>
Expand Down
2 changes: 1 addition & 1 deletion website/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import scala.concurrent.duration.DurationInt
import laika.sbt.LaikaPreviewConfig
import java.time.OffsetDateTime

ThisBuild / scalaVersion := "3.3.1"
ThisBuild / scalaVersion := "3.3.3"

enablePlugins(LaikaPlugin, GhpagesPlugin)

Expand Down

0 comments on commit 8f33a7c

Please sign in to comment.