Skip to content

Commit

Permalink
Update/scala library 2.13.5 (#74)
Browse files Browse the repository at this point in the history
* Update scala-library to 2.13.5

* fix: scalac error

Co-authored-by: Scala Steward <me@scala-steward.org>
  • Loading branch information
Tushar Mathur and scala-steward committed Mar 25, 2021
1 parent 1935648 commit b143695
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
scala: [2.13.3]
scala: [2.13.5]
java: [adopt@1.8]
runs-on: ${{ matrix.os }}
steps:
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import sbt.enablePlugins
// ZIO Version
val zioVersion = "1.0.5"
val zioConfigVersion = "1.0.0"
val scala_2_13 = "2.13.3"
val scala_2_13 = "2.13.5"

lazy val supportedScalaVersions = List(scala_2_13)

Expand Down
2 changes: 1 addition & 1 deletion zio-http/src/test/scala/zhttp/http/PathSpec.scala
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ object PathSpec extends DefaultRunnableSpec {
test("/")((Path(""): @unchecked) match { case Root => assertCompletes }),
test("/A/B")((Path("A", "B"): @unchecked) match { case Root / x / y => assert((x, y))(equalTo(("A", "B"))) }),
test("/A/B/C") {
Path("A", "B", "C") match { case Path(x, y, z) => assert((x, y, z))(equalTo(("A", "B", "C"))) }
(Path("A", "B", "C"): @unchecked) match { case Path(x, y, z) => assert((x, y, z))(equalTo(("A", "B", "C"))) }
},
),
)
Expand Down

0 comments on commit b143695

Please sign in to comment.