Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add 2.13.15 #213

Merged
merged 2 commits into from
Sep 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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:
Expand Down
1 change: 1 addition & 0 deletions .mergify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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)"
Expand Down
13 changes: 13 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -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.
14 changes: 3 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,10 @@ In scala-cli:
(note: versions before `0.3.8` were published under the `com.kubukoz` organization instead of `org.polyvariant`)

<!-- SCALA VERSIONS START -->
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
Expand Down Expand Up @@ -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

Expand Down
1 change: 1 addition & 0 deletions scala-versions
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading