Skip to content

Commit fec2f37

Browse files
authored
Add 2.13.15 (#213)
* Add 2.13.15 * Add CONTRIBUTING.md
1 parent c9ec894 commit fec2f37

File tree

5 files changed

+29
-11
lines changed

5 files changed

+29
-11
lines changed

.github/workflows/ci.yml

+11
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ jobs:
3535
- 2.13.12
3636
- 2.13.13
3737
- 2.13.14
38+
- 2.13.15
3839
- 3.1.3
3940
- 3.2.2
4041
- 3.3.0-RC6
@@ -223,6 +224,16 @@ jobs:
223224
tar xf targets.tar
224225
rm targets.tar
225226
227+
- name: Download target directories (2.13.15)
228+
uses: actions/download-artifact@v3
229+
with:
230+
name: target-${{ matrix.os }}-${{ matrix.java }}-2.13.15
231+
232+
- name: Inflate target directories (2.13.15)
233+
run: |
234+
tar xf targets.tar
235+
rm targets.tar
236+
226237
- name: Download target directories (3.1.3)
227238
uses: actions/download-artifact@v3
228239
with:

.mergify.yml

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ pull_request_rules:
99
- status-success="Build and Test (ubuntu-latest, 2.13.12, temurin@8)"
1010
- status-success="Build and Test (ubuntu-latest, 2.13.13, temurin@8)"
1111
- status-success="Build and Test (ubuntu-latest, 2.13.14, temurin@8)"
12+
- status-success="Build and Test (ubuntu-latest, 2.13.15, temurin@8)"
1213
- status-success="Build and Test (ubuntu-latest, 3.1.3, temurin@8)"
1314
- status-success="Build and Test (ubuntu-latest, 3.2.2, temurin@8)"
1415
- status-success="Build and Test (ubuntu-latest, 3.3.0-RC6, temurin@8)"

CONTRIBUTING.md

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# Contributing guide
2+
3+
## Adding new features
4+
5+
If you want to add a new feature, check if it's already been discussed in the issues list.
6+
7+
Before you start working on an existing feature / bugfix, let us know you're taking it on in its comments :)
8+
9+
## Adding a new Scala version
10+
11+
1. Add it to `./scala-versions` (one version per line)
12+
2. Run `sbt generateAll`
13+
3. Commit and open a pull request.

README.md

+3-11
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,10 @@ In scala-cli:
3939
(note: versions before `0.3.8` were published under the `com.kubukoz` organization instead of `org.polyvariant`)
4040

4141
<!-- SCALA VERSIONS START -->
42-
The plugin is currently published for the following 21 Scala versions:
42+
The plugin is currently published for the following 22 Scala versions:
4343

4444
- 2.12.18, 2.12.19, 2.12.20
45-
- 2.13.12, 2.13.13, 2.13.14
45+
- 2.13.12, 2.13.13, 2.13.14, 2.13.15
4646
- 3.1.3
4747
- 3.2.2
4848
- 3.3.0-RC6, 3.3.0, 3.3.1-RC1, 3.3.1, 3.3.2-RC1, 3.3.3
@@ -81,15 +81,7 @@ If you need a different `toString`, we suggest that you implement one yourself.
8181

8282
## Contributing
8383

84-
If you want to add a new feature, check if it's already been discussed in the issues list.
85-
86-
Before you start working on an existing feature / bugfix, let us know you're taking it on in its comments :)
87-
88-
To add a new Scala version:
89-
90-
1. Add it to `./scala-versions`
91-
2. Run `sbt generateAll`
92-
3. Commit and open a pull request.
84+
See [CONTRIBUTING.md](./CONTRIBUTING.md)
9385

9486
## Maintainers
9587

scala-versions

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
2.13.12
55
2.13.13
66
2.13.14
7+
2.13.15
78
3.1.3
89
3.2.2
910
3.3.0-RC6

0 commit comments

Comments
 (0)