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 to Scala 2.13.0-RC2 #637

Merged
merged 2 commits into from
May 25, 2019
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 @@ -42,7 +42,7 @@ jobs:
after_success:
- codecov

- scala: 2.13.0-RC1 # Remember to update this in build.sbt, too.
- scala: 2.13.0-RC2 # 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
10 changes: 5 additions & 5 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@ val gitHubOwner = "fthomas"
val gitPubUrl = s"https://github.com/$gitHubOwner/$projectName.git"
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-RC2"

val catsVersion = "1.6.0"
val jsonpathVersion = "2.4.0"
val macroParadiseVersion = "2.1.1"
Expand Down Expand Up @@ -63,11 +68,6 @@ val allSubprojectsJVM = allSubprojectsOf(JVMPlatform)
val allSubprojectsJS = allSubprojectsOf(JSPlatform)
val allSubprojectsNative = allSubprojectsOf(NativePlatform)

// Remember to update these in .travis.yml, too.
val Scala211 = "2.11.12"
val Scala212 = "2.12.8"
val Scala213 = "2.13.0-RC1"

val moduleCrossScalaVersionsMatrix: (String, Platform) => List[String] = {
case (_, NativePlatform) =>
List(Scala211)
Expand Down
11 changes: 11 additions & 0 deletions notes/0.9.6.markdown
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
### Updates

* Update Scala Native to 0.3.9. ([#631][#631] by [@scala-steward][@scala-steward])
* Update Scala 2.13 to 2.13.0-RC2 and Scala.js to 0.6.28.
([#637][#637] by [@fthomas][@fthomas])

[#631]: https://github.com/fthomas/refined/pull/631
[#637]: https://github.com/fthomas/refined/pull/637

[@fthomas]: https://github.com/fthomas
[@scala-steward]: https://github.com/scala-steward
2 changes: 1 addition & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "0.6.0")

addSbtPlugin("org.portable-scala" % "sbt-scala-native-crossproject" % "0.6.0")

addSbtPlugin("org.scala-js" % "sbt-scalajs" % "0.6.27")
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "0.6.28")

addSbtPlugin("org.scala-native" % "sbt-scala-native" % "0.3.9")

Expand Down