Skip to content

Commit

Permalink
Merge pull request #643 from fthomas/update/scala-2.13.0
Browse files Browse the repository at this point in the history
Update to Scala 2.13.0
  • Loading branch information
fthomas authored Jun 10, 2019
2 parents cdc72e0 + 452fbca commit bb6f252
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
after_success:
- codecov

- scala: 2.13.0-RC3 # Remember to update this in build.sbt, too.
- scala: 2.13.0 # Remember to update this in build.sbt, too.
script:
- sbt ++$TRAVIS_SCALA_VERSION coreJVM/test scalacheckJVM/test scalazJVM/test shapelessJVM/test &&
sbt ++$TRAVIS_SCALA_VERSION coreJS/test scalacheckJS/test scalazJS/test shapelessJS/test
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ ageEither2: Either[String,Age] = Right(55)
## Using refined

The latest version of the library is 0.9.7, which is available for Scala and
[Scala.js][scala.js] version 2.10, 2.11, and 2.12.
[Scala.js][scala.js] version 2.11, 2.12, and 2.13.

If you're using sbt, add the following to your build:

Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ val gitDevUrl = s"[email protected]:$gitHubOwner/$projectName.git"
// Remember to update these in .travis.yml, too.
val Scala211 = "2.11.12"
val Scala212 = "2.12.8"
val Scala213 = "2.13.0-RC3"
val Scala213 = "2.13.0"

val catsVersion = "1.6.1"
val jsonpathVersion = "2.4.0"
Expand Down
6 changes: 6 additions & 0 deletions notes/0.9.8.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@
* Add `validateNec` and `validateNel` to `cats.syntax`.
([#642][#642] by [@BalmungSan][@BalmungSan])

### Updates

* Update Scala 2.13 to 2.13.0. ([#643][#643] by [@fthomas][@fthomas])

[#642]: https://github.com/fthomas/refined/pull/642
[#643]: https://github.com/fthomas/refined/pull/643

[@BalmungSan]: https://github.com/BalmungSan
[@fthomas]: https://github.com/fthomas

0 comments on commit bb6f252

Please sign in to comment.