Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update/scala library 2.13.5 #74

Merged
merged 2 commits into from
Mar 25, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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.4-2"
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