Skip to content

Commit

Permalink
Add Scala 3.5.0-RC1 (#198)
Browse files Browse the repository at this point in the history
  • Loading branch information
kubukoz authored May 22, 2024
1 parent ddae105 commit 438e69f
Show file tree
Hide file tree
Showing 6 changed files with 35 additions and 2 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ jobs:
- 3.4.1-RC1
- 3.4.1
- 3.4.2
- 3.5.0-RC1
java: [temurin@8]
runs-on: ${{ matrix.os }}
steps:
Expand Down Expand Up @@ -384,6 +385,16 @@ jobs:
tar xf targets.tar
rm targets.tar
- name: Download target directories (3.5.0-RC1)
uses: actions/download-artifact@v3
with:
name: target-${{ matrix.os }}-${{ matrix.java }}-3.5.0-RC1

- name: Inflate target directories (3.5.0-RC1)
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
1 change: 1 addition & 0 deletions .mergify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ pull_request_rules:
- status-success="Build and Test (ubuntu-latest, 3.4.1-RC1, temurin@8)"
- status-success="Build and Test (ubuntu-latest, 3.4.1, temurin@8)"
- status-success="Build and Test (ubuntu-latest, 3.4.2, temurin@8)"
- status-success="Build and Test (ubuntu-latest, 3.5.0-RC1, temurin@8)"
actions:
merge:
method: merge
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,14 +39,15 @@ 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 22 Scala versions:
The plugin is currently published for the following 23 Scala versions:

- 2.12.15, 2.12.17, 2.12.18, 2.12.19
- 2.13.10, 2.13.11, 2.13.12, 2.13.13, 2.13.14
- 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
- 3.4.0-RC1, 3.4.0, 3.4.1-RC1, 3.4.1, 3.4.2
- 3.5.0-RC1
<!-- 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
19 changes: 19 additions & 0 deletions plugin/src/main/scala-3.5.x/AfterPhase.scala
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
/*
* Copyright 2020 Polyvariant
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package org.polyvariant

val AfterPhase = dotty.tools.dotc.typer.TyperPhase
2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version=1.9.9
sbt.version=1.10.0
1 change: 1 addition & 0 deletions scala-versions
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,4 @@
3.4.1-RC1
3.4.1
3.4.2
3.5.0-RC1

0 comments on commit 438e69f

Please sign in to comment.