Skip to content
This repository has been archived by the owner on Sep 12, 2021. It is now read-only.

Commit

Permalink
Release version 7.0.0-RC1
Browse files Browse the repository at this point in the history
  • Loading branch information
akkie committed Feb 10, 2020
1 parent 2c94117 commit 6812b15
Showing 1 changed file with 1 addition and 14 deletions.
15 changes: 1 addition & 14 deletions project/BuildSettings.scala
Expand Up @@ -30,18 +30,6 @@ import sbtunidoc.ScalaUnidocPlugin.autoImport._
object BasicSettings extends AutoPlugin {
override def trigger = allRequirements

val `scalacOptions2.11.x` = Seq(
"-Ywarn-adapted-args",
"-Ywarn-inaccessible",
"-Ywarn-infer-any",
"-Ywarn-nullary-override",
"-Ywarn-dead-code",
"-Ywarn-nullary-unit",
"-Ywarn-numeric-widen",
"-Xmax-classfile-name", "254",
"-language:higherKinds"
)

val `scalacOptions2.12.x` = Seq(
"-Xlint:adapted-args",
"-Ywarn-inaccessible",
Expand Down Expand Up @@ -71,14 +59,13 @@ object BasicSettings extends AutoPlugin {

override def projectSettings = Seq(
organization := "com.mohiva",
version := "6.1.1",
version := "7.0.0-RC1",
resolvers ++= Dependencies.resolvers,
scalaVersion := "2.13.1",
crossScalaVersions := Seq("2.13.1", "2.12.10"),
crossVersion := CrossVersion.full,
scalacOptions ++= {
scalacOptionsCommon ++ (scalaBinaryVersion.value match {
case "2.11" => `scalacOptions2.11.x`
case "2.12" => `scalacOptions2.12.x`
case "2.13" => `scalacOptions2.13.x`
})
Expand Down

0 comments on commit 6812b15

Please sign in to comment.