From e4c6726cf4e2a848e54eae7ec808de348e57ff58 Mon Sep 17 00:00:00 2001 From: "typelevel-steward[bot]" <106827141+typelevel-steward[bot]@users.noreply.github.com> Date: Fri, 10 Jun 2022 17:01:45 +0000 Subject: [PATCH 01/15] Update scala-library to 2.12.16 --- .github/workflows/ci.yml | 2 +- build.sbt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e16c0ff..43d3368 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -28,7 +28,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [3.1.0, 2.12.15, 2.13.8] + scala: [3.1.0, 2.12.16, 2.13.8] java: [temurin@8] project: [rootJS, rootJVM] runs-on: ${{ matrix.os }} diff --git a/build.sbt b/build.sbt index 401ae8f..d9ccdec 100644 --- a/build.sbt +++ b/build.sbt @@ -3,7 +3,7 @@ ThisBuild / tlBaseVersion := "1.0" ThisBuild / developers += tlGitHubDev("mpilquist", "Michael Pilquist") ThisBuild / startYear := Some(2021) -ThisBuild / crossScalaVersions := List("3.1.0", "2.12.15", "2.13.8") +ThisBuild / crossScalaVersions := List("3.1.0", "2.12.16", "2.13.8") ThisBuild / tlVersionIntroduced := Map("3" -> "1.0.2") lazy val root = tlCrossRootProject.aggregate(core, munit) From 803122bd34576560c92721b82ec386bfa11657f8 Mon Sep 17 00:00:00 2001 From: "typelevel-steward[bot]" <106827141+typelevel-steward[bot]@users.noreply.github.com> Date: Fri, 10 Jun 2022 17:02:09 +0000 Subject: [PATCH 02/15] Regenerate workflow with sbt-github-actions --- .github/workflows/ci.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 43d3368..9e532a2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -167,22 +167,22 @@ jobs: tar xf targets.tar rm targets.tar - - name: Download target directories (2.12.15, rootJS) + - name: Download target directories (2.12.16, rootJS) uses: actions/download-artifact@v2 with: - name: target-${{ matrix.os }}-${{ matrix.java }}-2.12.15-rootJS + name: target-${{ matrix.os }}-${{ matrix.java }}-2.12.16-rootJS - - name: Inflate target directories (2.12.15, rootJS) + - name: Inflate target directories (2.12.16, rootJS) run: | tar xf targets.tar rm targets.tar - - name: Download target directories (2.12.15, rootJVM) + - name: Download target directories (2.12.16, rootJVM) uses: actions/download-artifact@v2 with: - name: target-${{ matrix.os }}-${{ matrix.java }}-2.12.15-rootJVM + name: target-${{ matrix.os }}-${{ matrix.java }}-2.12.16-rootJVM - - name: Inflate target directories (2.12.15, rootJVM) + - name: Inflate target directories (2.12.16, rootJVM) run: | tar xf targets.tar rm targets.tar From 2c890f3ae9df9fb7d0435e75bba037d94c64f195 Mon Sep 17 00:00:00 2001 From: "typelevel-steward[bot]" <106827141+typelevel-steward[bot]@users.noreply.github.com> Date: Fri, 17 Jun 2022 02:19:52 +0000 Subject: [PATCH 03/15] Update cats-core to 2.8.0 --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index 401ae8f..88c6959 100644 --- a/build.sbt +++ b/build.sbt @@ -16,7 +16,7 @@ lazy val core = crossProject(JSPlatform, JVMPlatform) .settings( libraryDependencies ++= List( "org.scalacheck" %%% "scalacheck" % "1.16.0", - "org.typelevel" %%% "cats-core" % "2.7.0" + "org.typelevel" %%% "cats-core" % "2.8.0" ) ) From 634c3b248063db5105784903cc56bac52ceca465 Mon Sep 17 00:00:00 2001 From: "typelevel-steward[bot]" <106827141+typelevel-steward[bot]@users.noreply.github.com> Date: Tue, 21 Jun 2022 16:59:34 +0000 Subject: [PATCH 04/15] Update scala3-library, ... to 3.1.3 --- .github/workflows/ci.yml | 2 +- build.sbt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e16c0ff..06381a5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -28,7 +28,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [3.1.0, 2.12.15, 2.13.8] + scala: [3.1.3, 2.12.15, 2.13.8] java: [temurin@8] project: [rootJS, rootJVM] runs-on: ${{ matrix.os }} diff --git a/build.sbt b/build.sbt index 401ae8f..e30ba9f 100644 --- a/build.sbt +++ b/build.sbt @@ -3,7 +3,7 @@ ThisBuild / tlBaseVersion := "1.0" ThisBuild / developers += tlGitHubDev("mpilquist", "Michael Pilquist") ThisBuild / startYear := Some(2021) -ThisBuild / crossScalaVersions := List("3.1.0", "2.12.15", "2.13.8") +ThisBuild / crossScalaVersions := List("3.1.3", "2.12.15", "2.13.8") ThisBuild / tlVersionIntroduced := Map("3" -> "1.0.2") lazy val root = tlCrossRootProject.aggregate(core, munit) From 77a252547422afa74946cb057412b090b0762bb4 Mon Sep 17 00:00:00 2001 From: "typelevel-steward[bot]" <106827141+typelevel-steward[bot]@users.noreply.github.com> Date: Tue, 21 Jun 2022 16:59:59 +0000 Subject: [PATCH 05/15] Regenerate workflow with sbt-github-actions --- .github/workflows/ci.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 06381a5..5981013 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -147,22 +147,22 @@ jobs: ~/Library/Caches/Coursier/v1 key: ${{ runner.os }}-sbt-cache-v2-${{ hashFiles('**/*.sbt') }}-${{ hashFiles('project/build.properties') }} - - name: Download target directories (3.1.0, rootJS) + - name: Download target directories (3.1.3, rootJS) uses: actions/download-artifact@v2 with: - name: target-${{ matrix.os }}-${{ matrix.java }}-3.1.0-rootJS + name: target-${{ matrix.os }}-${{ matrix.java }}-3.1.3-rootJS - - name: Inflate target directories (3.1.0, rootJS) + - name: Inflate target directories (3.1.3, rootJS) run: | tar xf targets.tar rm targets.tar - - name: Download target directories (3.1.0, rootJVM) + - name: Download target directories (3.1.3, rootJVM) uses: actions/download-artifact@v2 with: - name: target-${{ matrix.os }}-${{ matrix.java }}-3.1.0-rootJVM + name: target-${{ matrix.os }}-${{ matrix.java }}-3.1.3-rootJVM - - name: Inflate target directories (3.1.0, rootJVM) + - name: Inflate target directories (3.1.3, rootJVM) run: | tar xf targets.tar rm targets.tar From 22c889a33f1c09e348e31de825ee0e95b474b8e4 Mon Sep 17 00:00:00 2001 From: "typelevel-steward[bot]" <106827141+typelevel-steward[bot]@users.noreply.github.com> Date: Sat, 25 Jun 2022 16:37:05 +0000 Subject: [PATCH 06/15] Update sbt-scalajs, scalajs-compiler, ... to 1.10.1 --- project/plugins.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/plugins.sbt b/project/plugins.sbt index 34b4bf8..0534367 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,2 +1,2 @@ -addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.10.0") +addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.10.1") addSbtPlugin("org.typelevel" % "sbt-typelevel" % "0.4.9") From 82a4637ff7d31af5b737025ec5069922b004f426 Mon Sep 17 00:00:00 2001 From: "typelevel-steward[bot]" <106827141+typelevel-steward[bot]@users.noreply.github.com> Date: Tue, 12 Jul 2022 05:23:06 +0000 Subject: [PATCH 07/15] Update sbt to 1.7.1 --- project/build.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.properties b/project/build.properties index e64c208..22af262 100644 --- a/project/build.properties +++ b/project/build.properties @@ -1 +1 @@ -sbt.version=1.5.8 +sbt.version=1.7.1 From 10d705e9ca5c973cf5d84e333d917fa489bc7a76 Mon Sep 17 00:00:00 2001 From: "typelevel-steward[bot]" <106827141+typelevel-steward[bot]@users.noreply.github.com> Date: Wed, 13 Jul 2022 02:28:40 +0000 Subject: [PATCH 08/15] Update cats-effect to 3.3.14 --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index 401ae8f..35eae76 100644 --- a/build.sbt +++ b/build.sbt @@ -29,6 +29,6 @@ lazy val munit = crossProject(JSPlatform, JVMPlatform) .settings( libraryDependencies ++= List( "org.scalameta" %%% "munit-scalacheck" % "0.7.29", - "org.typelevel" %%% "cats-effect" % "3.3.11" % Test + "org.typelevel" %%% "cats-effect" % "3.3.14" % Test ) ) From 2d7fbca758c01dfd7860687f44040dd97103d4e8 Mon Sep 17 00:00:00 2001 From: "typelevel-steward[bot]" <106827141+typelevel-steward[bot]@users.noreply.github.com> Date: Sat, 16 Jul 2022 20:56:49 +0000 Subject: [PATCH 09/15] Update sbt-typelevel to 0.4.13 --- project/plugins.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/plugins.sbt b/project/plugins.sbt index 34b4bf8..3eb5191 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,2 +1,2 @@ addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.10.0") -addSbtPlugin("org.typelevel" % "sbt-typelevel" % "0.4.9") +addSbtPlugin("org.typelevel" % "sbt-typelevel" % "0.4.13") From 8a67999a8f3ce2c6783e660299889350435b981b Mon Sep 17 00:00:00 2001 From: "typelevel-steward[bot]" <106827141+typelevel-steward[bot]@users.noreply.github.com> Date: Sat, 16 Jul 2022 20:57:31 +0000 Subject: [PATCH 10/15] Run prePR with sbt-typelevel Executed command: sbt tlPrePrBotHook --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e16c0ff..6cf0c6c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,9 +9,9 @@ name: Continuous Integration on: pull_request: - branches: ['**'] + branches: ['**', '!update/**', '!pr/**'] push: - branches: ['**'] + branches: ['**', '!update/**', '!pr/**'] tags: [v*] env: From 041a0121afc808ba890301c77531d157af8915e0 Mon Sep 17 00:00:00 2001 From: "typelevel-steward[bot]" <106827141+typelevel-steward[bot]@users.noreply.github.com> Date: Sun, 17 Jul 2022 02:37:56 +0000 Subject: [PATCH 11/15] Revert commit(s) 22c889a --- project/plugins.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/plugins.sbt b/project/plugins.sbt index 0534367..34b4bf8 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,2 +1,2 @@ -addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.10.1") +addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.10.0") addSbtPlugin("org.typelevel" % "sbt-typelevel" % "0.4.9") From d88d2ad33e0d7a09b92861a2391582bf98fc6728 Mon Sep 17 00:00:00 2001 From: "typelevel-steward[bot]" <106827141+typelevel-steward[bot]@users.noreply.github.com> Date: Sun, 17 Jul 2022 02:38:02 +0000 Subject: [PATCH 12/15] Update sbt-scalajs, scalajs-compiler, ... to 1.10.1 --- project/plugins.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/plugins.sbt b/project/plugins.sbt index 3eb5191..79fddf6 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,2 +1,2 @@ -addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.10.0") +addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.10.1") addSbtPlugin("org.typelevel" % "sbt-typelevel" % "0.4.13") From 1d8108df5faddcc9c4b2767de7202643a14fa104 Mon Sep 17 00:00:00 2001 From: "typelevel-steward[bot]" <106827141+typelevel-steward[bot]@users.noreply.github.com> Date: Sun, 17 Jul 2022 02:38:04 +0000 Subject: [PATCH 13/15] Revert commit(s) 803122b, e4c6726 --- .github/workflows/ci.yml | 14 +++++++------- build.sbt | 2 +- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9e532a2..e16c0ff 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -28,7 +28,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [3.1.0, 2.12.16, 2.13.8] + scala: [3.1.0, 2.12.15, 2.13.8] java: [temurin@8] project: [rootJS, rootJVM] runs-on: ${{ matrix.os }} @@ -167,22 +167,22 @@ jobs: tar xf targets.tar rm targets.tar - - name: Download target directories (2.12.16, rootJS) + - name: Download target directories (2.12.15, rootJS) uses: actions/download-artifact@v2 with: - name: target-${{ matrix.os }}-${{ matrix.java }}-2.12.16-rootJS + name: target-${{ matrix.os }}-${{ matrix.java }}-2.12.15-rootJS - - name: Inflate target directories (2.12.16, rootJS) + - name: Inflate target directories (2.12.15, rootJS) run: | tar xf targets.tar rm targets.tar - - name: Download target directories (2.12.16, rootJVM) + - name: Download target directories (2.12.15, rootJVM) uses: actions/download-artifact@v2 with: - name: target-${{ matrix.os }}-${{ matrix.java }}-2.12.16-rootJVM + name: target-${{ matrix.os }}-${{ matrix.java }}-2.12.15-rootJVM - - name: Inflate target directories (2.12.16, rootJVM) + - name: Inflate target directories (2.12.15, rootJVM) run: | tar xf targets.tar rm targets.tar diff --git a/build.sbt b/build.sbt index d9ccdec..401ae8f 100644 --- a/build.sbt +++ b/build.sbt @@ -3,7 +3,7 @@ ThisBuild / tlBaseVersion := "1.0" ThisBuild / developers += tlGitHubDev("mpilquist", "Michael Pilquist") ThisBuild / startYear := Some(2021) -ThisBuild / crossScalaVersions := List("3.1.0", "2.12.16", "2.13.8") +ThisBuild / crossScalaVersions := List("3.1.0", "2.12.15", "2.13.8") ThisBuild / tlVersionIntroduced := Map("3" -> "1.0.2") lazy val root = tlCrossRootProject.aggregate(core, munit) From 8ce6884fcec3c28f9758be502e4aade600c993dd Mon Sep 17 00:00:00 2001 From: "typelevel-steward[bot]" <106827141+typelevel-steward[bot]@users.noreply.github.com> Date: Sun, 17 Jul 2022 02:38:08 +0000 Subject: [PATCH 14/15] Update scala-library to 2.12.16 --- .github/workflows/ci.yml | 2 +- build.sbt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 87d7207..444d116 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -28,7 +28,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [3.1.3, 2.12.15, 2.13.8] + scala: [3.1.3, 2.12.16, 2.13.8] java: [temurin@8] project: [rootJS, rootJVM] runs-on: ${{ matrix.os }} diff --git a/build.sbt b/build.sbt index 8b2c2d7..eab3cd6 100644 --- a/build.sbt +++ b/build.sbt @@ -3,7 +3,7 @@ ThisBuild / tlBaseVersion := "1.0" ThisBuild / developers += tlGitHubDev("mpilquist", "Michael Pilquist") ThisBuild / startYear := Some(2021) -ThisBuild / crossScalaVersions := List("3.1.3", "2.12.15", "2.13.8") +ThisBuild / crossScalaVersions := List("3.1.3", "2.12.16", "2.13.8") ThisBuild / tlVersionIntroduced := Map("3" -> "1.0.2") lazy val root = tlCrossRootProject.aggregate(core, munit) From ea309bfd0d0006384373148e221fd64b86dc8721 Mon Sep 17 00:00:00 2001 From: "typelevel-steward[bot]" <106827141+typelevel-steward[bot]@users.noreply.github.com> Date: Sun, 17 Jul 2022 02:38:25 +0000 Subject: [PATCH 15/15] Regenerate GitHub Actions workflow Executed command: sbt githubWorkflowGenerate --- .github/workflows/ci.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 444d116..67b67fd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -167,22 +167,22 @@ jobs: tar xf targets.tar rm targets.tar - - name: Download target directories (2.12.15, rootJS) + - name: Download target directories (2.12.16, rootJS) uses: actions/download-artifact@v2 with: - name: target-${{ matrix.os }}-${{ matrix.java }}-2.12.15-rootJS + name: target-${{ matrix.os }}-${{ matrix.java }}-2.12.16-rootJS - - name: Inflate target directories (2.12.15, rootJS) + - name: Inflate target directories (2.12.16, rootJS) run: | tar xf targets.tar rm targets.tar - - name: Download target directories (2.12.15, rootJVM) + - name: Download target directories (2.12.16, rootJVM) uses: actions/download-artifact@v2 with: - name: target-${{ matrix.os }}-${{ matrix.java }}-2.12.15-rootJVM + name: target-${{ matrix.os }}-${{ matrix.java }}-2.12.16-rootJVM - - name: Inflate target directories (2.12.15, rootJVM) + - name: Inflate target directories (2.12.16, rootJVM) run: | tar xf targets.tar rm targets.tar