Skip to content

Commit

Permalink
Add Scala 2.13.7, drop 2.13.4 (#87)
Browse files Browse the repository at this point in the history
  • Loading branch information
kubukoz authored Nov 1, 2021
1 parent 60c1619 commit 8dd21f9
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@ jobs:
- 2.12.13
- 2.12.14
- 2.12.15
- 2.13.4
- 2.13.5
- 2.13.6
- 2.13.7
- 3.0.0
- 3.0.1
- 3.0.2
Expand Down Expand Up @@ -143,32 +143,32 @@ jobs:
tar xf targets.tar
rm targets.tar
- name: Download target directories (2.13.4)
- name: Download target directories (2.13.5)
uses: actions/download-artifact@v2
with:
name: target-${{ matrix.os }}-2.13.4-${{ matrix.java }}
name: target-${{ matrix.os }}-2.13.5-${{ matrix.java }}

- name: Inflate target directories (2.13.4)
- name: Inflate target directories (2.13.5)
run: |
tar xf targets.tar
rm targets.tar
- name: Download target directories (2.13.5)
- name: Download target directories (2.13.6)
uses: actions/download-artifact@v2
with:
name: target-${{ matrix.os }}-2.13.5-${{ matrix.java }}
name: target-${{ matrix.os }}-2.13.6-${{ matrix.java }}

- name: Inflate target directories (2.13.5)
- name: Inflate target directories (2.13.6)
run: |
tar xf targets.tar
rm targets.tar
- name: Download target directories (2.13.6)
- name: Download target directories (2.13.7)
uses: actions/download-artifact@v2
with:
name: target-${{ matrix.os }}-2.13.6-${{ matrix.java }}
name: target-${{ matrix.os }}-2.13.7-${{ matrix.java }}

- name: Inflate target directories (2.13.6)
- name: Inflate target directories (2.13.7)
run: |
tar xf targets.tar
rm targets.tar
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ libraryDependencies += compilerPlugin("org.polyvariant" % "better-tostring" % ve
The plugin is currently published for the following Scala versions:

- 2.12.13, 2.12.14, 2.12.15
- 2.13.4, 2.13.5, 2.13.6
- 2.13.5, 2.13.6, 2.13.7
- 3.0.0, 3.0.1, 3.0.2, 3.1.0-RC2, 3.1.0-RC3, 3.1.0

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/org/polyvariant)).
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@ ThisBuild / crossScalaVersions := Seq(
"2.12.14",
"2.12.15",
//
"2.13.4",
"2.13.5",
"2.13.6",
"2.13.7",
//
"3.0.0",
"3.0.1",
Expand Down

0 comments on commit 8dd21f9

Please sign in to comment.