Skip to content

Commit

Permalink
Add new scala versions for 2024.02
Browse files Browse the repository at this point in the history
  • Loading branch information
kubukoz committed Feb 29, 2024
1 parent e4930d4 commit 6f0f265
Show file tree
Hide file tree
Showing 4 changed files with 42 additions and 3 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,11 @@ jobs:
- 2.12.15
- 2.12.17
- 2.12.18
- 2.12.19
- 2.13.10
- 2.13.11
- 2.13.12
- 2.13.13
- 3.1.3
- 3.2.2
- 3.3.0-RC6
Expand All @@ -43,6 +45,7 @@ jobs:
- 3.3.1
- 3.3.2-RC1
- 3.4.0-RC1
- 3.4.0
java: [temurin@8]
runs-on: ${{ matrix.os }}
steps:
Expand Down Expand Up @@ -186,6 +189,16 @@ jobs:
tar xf targets.tar
rm targets.tar
- name: Download target directories (2.12.19)
uses: actions/download-artifact@v3
with:
name: target-${{ matrix.os }}-${{ matrix.java }}-2.12.19

- name: Inflate target directories (2.12.19)
run: |
tar xf targets.tar
rm targets.tar
- name: Download target directories (2.13.10)
uses: actions/download-artifact@v3
with:
Expand Down Expand Up @@ -216,6 +229,16 @@ jobs:
tar xf targets.tar
rm targets.tar
- name: Download target directories (2.13.13)
uses: actions/download-artifact@v3
with:
name: target-${{ matrix.os }}-${{ matrix.java }}-2.13.13

- name: Inflate target directories (2.13.13)
run: |
tar xf targets.tar
rm targets.tar
- name: Download target directories (3.1.3)
uses: actions/download-artifact@v3
with:
Expand Down Expand Up @@ -296,6 +319,16 @@ jobs:
tar xf targets.tar
rm targets.tar
- name: Download target directories (3.4.0)
uses: actions/download-artifact@v3
with:
name: target-${{ matrix.os }}-${{ matrix.java }}-3.4.0

- name: Inflate target directories (3.4.0)
run: |
tar xf targets.tar
rm targets.tar
- name: Import signing key
if: env.PGP_SECRET != '' && env.PGP_PASSPHRASE == ''
run: echo $PGP_SECRET | base64 -di | gpg --import
Expand Down
3 changes: 3 additions & 0 deletions .mergify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,11 @@ pull_request_rules:
- status-success="Build and Test (ubuntu-latest, 2.12.15, temurin@8)"
- status-success="Build and Test (ubuntu-latest, 2.12.17, temurin@8)"
- status-success="Build and Test (ubuntu-latest, 2.12.18, temurin@8)"
- status-success="Build and Test (ubuntu-latest, 2.12.19, temurin@8)"
- status-success="Build and Test (ubuntu-latest, 2.13.10, temurin@8)"
- status-success="Build and Test (ubuntu-latest, 2.13.11, temurin@8)"
- 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, 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)"
Expand All @@ -17,6 +19,7 @@ pull_request_rules:
- status-success="Build and Test (ubuntu-latest, 3.3.1, temurin@8)"
- status-success="Build and Test (ubuntu-latest, 3.3.2-RC1, temurin@8)"
- status-success="Build and Test (ubuntu-latest, 3.4.0-RC1, temurin@8)"
- status-success="Build and Test (ubuntu-latest, 3.4.0, temurin@8)"
actions:
merge:
method: merge
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,12 +41,12 @@ In scala-cli:
The plugin is currently published for the following Scala versions:

<!-- SCALA VERSIONS START -->
- 2.12.15, 2.12.17, 2.12.18
- 2.13.10, 2.13.11, 2.13.12
- 2.12.15, 2.12.17, 2.12.18, 2.12.19
- 2.13.10, 2.13.11, 2.13.12, 2.13.13
- 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.4.0-RC1
- 3.4.0-RC1, 3.4.0
<!-- SCALA VERSIONS END -->

For older Scala versions, see [previous versions of better-tostring](https://repo1.maven.org/maven2/org/polyvariant) ([or even older versions](https://repo1.maven.org/maven2/com/kubukoz)).
Expand Down
3 changes: 3 additions & 0 deletions scala-versions
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
2.12.15
2.12.17
2.12.18
2.12.19
2.13.10
2.13.11
2.13.12
2.13.13
3.1.3
3.2.2
3.3.0-RC6
Expand All @@ -12,3 +14,4 @@
3.3.1
3.3.2-RC1
3.4.0-RC1
3.4.0

0 comments on commit 6f0f265

Please sign in to comment.