Skip to content

Commit

Permalink
Remove 2.13.0-M3 support for now
Browse files Browse the repository at this point in the history
Isn't current any more and support for 2.13.0-M4 will be added later.
  • Loading branch information
jrudolph committed Jul 26, 2018
1 parent 770c570 commit 78abb5e
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 10 deletions.
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ scala:
- 2.10.7
- 2.11.12
- 2.12.6
- 2.13.0-M3
script:
- sbt "++ ${TRAVIS_SCALA_VERSION}!" test mimaReportBinaryIssues
jdk:
Expand Down
10 changes: 1 addition & 9 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,6 @@ scalacOptions ++= Seq("-feature", "-language:_", "-unchecked", "-deprecation", "

resolvers += Opts.resolver.sonatypeReleases

libraryDependencies ++=
(CrossVersion.partialVersion(scalaVersion.value) match {
case Some((2, n)) if n >= 13 =>
Seq("org.scala-lang.modules" %% "scala-parallel-collections" % "0.1.2")
case _ =>
Nil
})

libraryDependencies ++= (CrossVersion.partialVersion(scalaVersion.value) match {
case Some((2, 10)) => Seq(
"org.specs2" %% "specs2-core" % "3.8.9" % "test",
Expand Down Expand Up @@ -72,7 +64,7 @@ mimaBinaryIssueFilters := Seq(
// publishing
///////////////

crossScalaVersions := Seq("2.12.6", "2.10.7", "2.11.12", "2.13.0-M3")
crossScalaVersions := Seq("2.12.6", "2.10.7", "2.11.12")

publishMavenStyle := true

Expand Down

0 comments on commit 78abb5e

Please sign in to comment.