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 to 2.13.3 #799

Merged
merged 3 commits into from
Aug 18, 2020
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
after_success:
- codecov

- scala: 2.13.1 # Remember to update this in build.sbt, too.
- scala: 2.13.3 # Remember to update this in build.sbt, too.
script:
- sbt ++$TRAVIS_SCALA_VERSION testJVM213 &&
sbt ++$TRAVIS_SCALA_VERSION testJS213
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ val gitDevUrl = s"[email protected]:$gitHubOwner/$projectName.git"

// Remember to update these in .travis.yml, too.
val Scala212 = "2.12.11"
val Scala213 = "2.13.1"
val Scala213 = "2.13.3"

val catsVersion = "2.1.1"
val jsonpathVersion = "2.4.0"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,18 +25,6 @@ class GenericValidateSpec extends Properties("GenericValidate") {
isValid[Equal[Foo.type]](Foo)
}

property("Equal.Symbol.isValid") = secure {
isValid[Equal[W.`'foo`.T]](Symbol("foo"))
}

property("Equal.Symbol.notValid") = secure {
notValid[Equal[W.`'foo`.T]](Symbol("bar"))
}

property("Equal.Symbol.showExpr") = secure {
showExpr[Equal[W.`'foo`.T]](Symbol("bar")) ?= "('bar == 'foo)"
}

property("Equal.Nat.Int.isValid") = forAll((i: Int) => isValid[Equal[_0]](i) ?= (i == 0))

property("Equal.Nat.Long.isValid") = forAll((l: Long) => isValid[Equal[_0]](l) ?= (l == 0L))
Expand Down