From 92218e41bc65ce1fd12e1e79d47764e20af80c89 Mon Sep 17 00:00:00 2001 From: "Ross A. Baker" Date: Wed, 6 Jul 2022 22:05:55 -0400 Subject: [PATCH 1/2] http4s-core-1.0.0-M34 --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index 75b7518..bd726e4 100644 --- a/build.sbt +++ b/build.sbt @@ -9,7 +9,7 @@ ThisBuild / scalaVersion := Scala213 lazy val root = project.in(file(".")).aggregate(scalatags).enablePlugins(NoPublishPlugin) -val http4sVersion = "0.23.12" +val http4sVersion = "1.0.0-M34" val scalatagsVersion = "0.11.1" val munitVersion = "0.7.29" val munitCatsEffectVersion = "1.0.7" From 85e737721144f50e2103677764bfad8b867075ea Mon Sep 17 00:00:00 2001 From: "Ross A. Baker" Date: Wed, 6 Jul 2022 22:27:40 -0400 Subject: [PATCH 2/2] Drop Scala 2.12 for 1.0 --- .github/workflows/ci.yml | 16 +--------------- build.sbt | 2 +- 2 files changed, 2 insertions(+), 16 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7b8e45c..f270e91 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -29,13 +29,9 @@ jobs: fail-fast: false matrix: os: [ubuntu-latest] - scala: [2.12.15, 2.13.8, 3.1.2] + scala: [2.13.8, 3.1.2] java: [temurin@8, temurin@11, temurin@17] exclude: - - scala: 2.12.15 - java: temurin@11 - - scala: 2.12.15 - java: temurin@17 - scala: 3.1.2 java: temurin@11 - scala: 3.1.2 @@ -224,16 +220,6 @@ jobs: ~/Library/Caches/Coursier/v1 key: ${{ runner.os }}-sbt-cache-v2-${{ hashFiles('**/*.sbt') }}-${{ hashFiles('project/build.properties') }} - - name: Download target directories (2.12.15) - uses: actions/download-artifact@v2 - with: - name: target-${{ matrix.os }}-${{ matrix.java }}-2.12.15 - - - name: Inflate target directories (2.12.15) - run: | - tar xf targets.tar - rm targets.tar - - name: Download target directories (2.13.8) uses: actions/download-artifact@v2 with: diff --git a/build.sbt b/build.sbt index bd726e4..e1e34ff 100644 --- a/build.sbt +++ b/build.sbt @@ -4,7 +4,7 @@ ThisBuild / developers := List( ) val Scala213 = "2.13.8" -ThisBuild / crossScalaVersions := Seq("2.12.15", Scala213, "3.1.2") +ThisBuild / crossScalaVersions := Seq(Scala213, "3.1.2") ThisBuild / scalaVersion := Scala213 lazy val root = project.in(file(".")).aggregate(scalatags).enablePlugins(NoPublishPlugin)