diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 080267e..4b1d0bb 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,7 +11,7 @@ jobs: name: Build and test strategy: matrix: - scala: [ 2.11.12, 2.12.19, 2.13.13 ] + scala: [ 2.11.12, 2.12.19, 2.13.14 ] runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 diff --git a/build.sbt b/build.sbt index 0a8b46f..5378623 100644 --- a/build.sbt +++ b/build.sbt @@ -5,8 +5,8 @@ val scalaTestVersion = "3.2.18" lazy val beanPuree = (project in file (".")) .settings( name := "beanpuree", - scalaVersion := "2.13.13", - crossScalaVersions := Seq("2.11.12", "2.12.19", "2.13.13"), + scalaVersion := "2.13.14", + crossScalaVersions := Seq("2.11.12", "2.12.19", "2.13.14"), scalacOptions ++= Seq("-deprecation", "-unchecked", "-feature"), organization := "me.limansky", incOptions := incOptions.value.withLogRecompileOnMacro(false),