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 Mar 24, 2024
1 parent 3a231cb commit 106553c
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 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.15.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 Expand Up @@ -283,8 +283,8 @@ lazy val docs =
.enablePlugins(MdocPlugin)
.settings(
neverPublish,
organization := "io.indigoengine",
mdocJS := Some(jsdocs),
organization := "io.indigoengine",
mdocJS := Some(jsdocs),
mdocVariables := Map(
"VERSION" -> tyrianDocsVersion,
"SCALAJS_VERSION" -> scalaJsDocsVersion,
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
2 changes: 1 addition & 1 deletion examples/mill/build.sc
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ 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.15.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 106553c

Please sign in to comment.