From b60748df5f67fcf2ebe25d61a2fc460cb7e23e8f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Koz=C5=82owski?= Date: Wed, 25 Sep 2024 18:55:34 +0200 Subject: [PATCH 1/2] Add 2.13.15 --- .github/workflows/ci.yml | 11 +++++++++++ .mergify.yml | 1 + README.md | 4 ++-- scala-versions | 1 + 4 files changed, 15 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fccac2a..d703585 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -35,6 +35,7 @@ jobs: - 2.13.12 - 2.13.13 - 2.13.14 + - 2.13.15 - 3.1.3 - 3.2.2 - 3.3.0-RC6 @@ -223,6 +224,16 @@ jobs: tar xf targets.tar rm targets.tar + - name: Download target directories (2.13.15) + uses: actions/download-artifact@v3 + with: + name: target-${{ matrix.os }}-${{ matrix.java }}-2.13.15 + + - name: Inflate target directories (2.13.15) + run: | + tar xf targets.tar + rm targets.tar + - name: Download target directories (3.1.3) uses: actions/download-artifact@v3 with: diff --git a/.mergify.yml b/.mergify.yml index f075499..aba5a28 100644 --- a/.mergify.yml +++ b/.mergify.yml @@ -9,6 +9,7 @@ pull_request_rules: - status-success="Build and Test (ubuntu-latest, 2.13.12, temurin@8)" - status-success="Build and Test (ubuntu-latest, 2.13.13, temurin@8)" - status-success="Build and Test (ubuntu-latest, 2.13.14, temurin@8)" + - status-success="Build and Test (ubuntu-latest, 2.13.15, temurin@8)" - status-success="Build and Test (ubuntu-latest, 3.1.3, temurin@8)" - status-success="Build and Test (ubuntu-latest, 3.2.2, temurin@8)" - status-success="Build and Test (ubuntu-latest, 3.3.0-RC6, temurin@8)" diff --git a/README.md b/README.md index 4114b88..4c7e395 100644 --- a/README.md +++ b/README.md @@ -39,10 +39,10 @@ In scala-cli: (note: versions before `0.3.8` were published under the `com.kubukoz` organization instead of `org.polyvariant`) -The plugin is currently published for the following 21 Scala versions: +The plugin is currently published for the following 22 Scala versions: - 2.12.18, 2.12.19, 2.12.20 -- 2.13.12, 2.13.13, 2.13.14 +- 2.13.12, 2.13.13, 2.13.14, 2.13.15 - 3.1.3 - 3.2.2 - 3.3.0-RC6, 3.3.0, 3.3.1-RC1, 3.3.1, 3.3.2-RC1, 3.3.3 diff --git a/scala-versions b/scala-versions index 5098858..89e3d13 100644 --- a/scala-versions +++ b/scala-versions @@ -4,6 +4,7 @@ 2.13.12 2.13.13 2.13.14 +2.13.15 3.1.3 3.2.2 3.3.0-RC6 From cf3cb5928e2202b5a1581f1b67443b4bca7499d0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Koz=C5=82owski?= Date: Wed, 25 Sep 2024 18:57:11 +0200 Subject: [PATCH 2/2] Add CONTRIBUTING.md --- CONTRIBUTING.md | 13 +++++++++++++ README.md | 10 +--------- 2 files changed, 14 insertions(+), 9 deletions(-) create mode 100644 CONTRIBUTING.md diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 0000000..56077c3 --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,13 @@ +# Contributing guide + +## Adding new features + +If you want to add a new feature, check if it's already been discussed in the issues list. + +Before you start working on an existing feature / bugfix, let us know you're taking it on in its comments :) + +## Adding a new Scala version + +1. Add it to `./scala-versions` (one version per line) +2. Run `sbt generateAll` +3. Commit and open a pull request. diff --git a/README.md b/README.md index 4c7e395..f13c35a 100644 --- a/README.md +++ b/README.md @@ -81,15 +81,7 @@ If you need a different `toString`, we suggest that you implement one yourself. ## Contributing -If you want to add a new feature, check if it's already been discussed in the issues list. - -Before you start working on an existing feature / bugfix, let us know you're taking it on in its comments :) - -To add a new Scala version: - -1. Add it to `./scala-versions` -2. Run `sbt generateAll` -3. Commit and open a pull request. +See [CONTRIBUTING.md](./CONTRIBUTING.md) ## Maintainers