From b4a9bd790288b9ebf250c35f2d461a1fc9287e4c Mon Sep 17 00:00:00 2001 From: TSUYUSATO Kitsune Date: Fri, 23 Jul 2021 22:41:05 +0900 Subject: [PATCH] Support Scala 3.0.1 --- .github/workflows/scala.yml | 4 ++-- CHANGELOG.md | 1 + build.sbt | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/scala.yml b/.github/workflows/scala.yml index f88bd53..d9e6b86 100644 --- a/.github/workflows/scala.yml +++ b/.github/workflows/scala.yml @@ -7,10 +7,10 @@ jobs: strategy: fail-fast: false matrix: - scala: [ 2.13.6, 3.0.0 ] + scala: [ 2.13.6, 3.0.1 ] platform: [JVM, JS, Native] exclude: - - scala: 3.0.0 + - scala: 3.0.1 platform: native runs-on: ubuntu-20.04 name: Scala CI diff --git a/CHANGELOG.md b/CHANGELOG.md index e1cdd7c..af7d2af 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,7 @@ Changes: - Support Scala 2.13.6 +- Support Scala 3.0.1 - `lite-diff`: Initial release ([#16](https://github.com/MakeNowJust-Labo/lite/pull/16)) # 0.3.0 (2021-05-14) diff --git a/build.sbt b/build.sbt index ba75dd0..56c36c4 100644 --- a/build.sbt +++ b/build.sbt @@ -13,7 +13,7 @@ ThisBuild / developers := List( ) ThisBuild / scalaVersion := "2.13.6" -ThisBuild / crossScalaVersions := Seq("3.0.0", "2.13.6") +ThisBuild / crossScalaVersions := Seq("3.0.1", "2.13.6") ThisBuild / scalacOptions ++= Seq( "-encoding", "UTF-8",