Skip to content

Commit

Permalink
Drop 0.13.x support for new IO library
Browse files Browse the repository at this point in the history
  • Loading branch information
er1c committed Sep 19, 2021
1 parent c8cd902 commit ab273c1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 7 deletions.
4 changes: 0 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,8 @@ jobs:
include:
- java: 8
scala: 2.12.8
- java: 8
scala: 2.10.7
- java: 11
scala: 2.12.8
- java: 11
scala: 2.10.7
env:
# define Java options for both official sbt and sbt-extras
JAVA_OPTS: -Xms2048M -Xmx2048M -Xss6M -XX:ReservedCodeCacheSize=256M -Dfile.encoding=UTF-8
Expand Down
6 changes: 3 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ ThisBuild / version := "1.2.0-SNAPSHOT"
ThisBuild / organization := "com.eed3si9n"

def scala212 = "2.12.8"
def scala210 = "2.10.7"
ThisBuild / crossScalaVersions := Seq(scala212, scala210)
//def scala210 = "2.10.7"
ThisBuild / crossScalaVersions := Seq(scala212/*, scala210*/)
ThisBuild / scalaVersion := scala212

lazy val root = (project in file("."))
Expand All @@ -19,7 +19,7 @@ lazy val root = (project in file("."))
)
(pluginCrossBuild / sbtVersion) := {
scalaBinaryVersion.value match {
case "2.10" => "0.13.18"
//case "2.10" => "0.13.18"
case "2.12" => "1.2.8"
}
}
Expand Down

0 comments on commit ab273c1

Please sign in to comment.