From cd420eb152594e3f3bcad2bbc0aef26d673066a0 Mon Sep 17 00:00:00 2001 From: Chris Kipp Date: Sat, 3 Jun 2023 09:07:44 +0200 Subject: [PATCH] chore: add support for 2.13.11 closes #551 --- .github/workflows/ci.yml | 4 ++-- build.sbt | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 94f74714..e6017365 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,9 +22,9 @@ jobs: { version: '2.12.18' }, { version: '2.12.17' }, { version: '2.12.16' }, + { version: '2.13.11' }, { version: '2.13.10' }, - { version: '2.13.9' }, - { version: '2.13.8' }, + { version: '2.13.9' } ] steps: - name: checkout the repo diff --git a/build.sbt b/build.sbt index ecae6f92..f5517b26 100644 --- a/build.sbt +++ b/build.sbt @@ -4,7 +4,7 @@ import sbtcrossproject.CrossType lazy val munitVersion = "0.7.29" lazy val scalametaVersion = "4.7.8" lazy val defaultScala212 = "2.12.18" -lazy val defaultScala213 = "2.13.10" +lazy val defaultScala213 = "2.13.11" lazy val defaultScala3 = "3.3.0" lazy val bin212 = Seq( @@ -21,6 +21,7 @@ lazy val bin212 = lazy val bin213 = Seq( defaultScala213, + "2.13.10", "2.13.9", "2.13.8", "2.13.7",