Skip to content

Commit

Permalink
project: update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
etorreborre committed Jan 13, 2024
1 parent c71384f commit 339d25a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion examples/shared/src/test/scala/examples/StackSpec.scala
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ class StackSpec extends Specification:
val stack = newEmptyStack

def e1 = stack.size must ===(0)
def e2 = stack.top must throwA[IndexOutOfBoundsException]
def e2 = stack.top must throwA[NoSuchElementException]
def e3 = stack.pop must throwA[NoSuchElementException]

case class nonEmpty(createStack: SizedStack):
Expand Down
4 changes: 2 additions & 2 deletions project/depends.scala
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ object depends {
val scalaXml = libraryDependencies += "org.scala-lang.modules" %%% "scala-xml" % "2.2.0"

// used in specs2-junit
val junitVintage = "org.junit.vintage" % "junit-vintage-engine" % "5.10.0"
val junitVintage = "org.junit.vintage" % "junit-vintage-engine" % "5.10.1"
val junit = libraryDependencies ++= Seq(junitVintage, "org.junit.platform" % "junit-platform-engine" % "1.10.1")
val junitTest = libraryDependencies += junitVintage % Test

Expand All @@ -32,7 +32,7 @@ object depends {
// used in specs2-html
val tagsoup = "org.ccil.cowan.tagsoup" % "tagsoup" % "1.2.1"

val Scala213 = "2.13.11"
val Scala213 = "2.13.12"

val isScala3 = Def.setting(CrossVersion.partialVersion(scalaVersion.value).exists(_._1 == 3))

Expand Down
2 changes: 1 addition & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
val scalaJSVersion = Option(System.getenv("SCALAJS_VERSION")).getOrElse("1.13.2")
val scalaJSVersion = Option(System.getenv("SCALAJS_VERSION")).getOrElse("1.15.0")

// dev
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.2")
Expand Down

0 comments on commit 339d25a

Please sign in to comment.