Skip to content

Commit

Permalink
Merge pull request #57 from WojciechMazur/scala-3.6.2
Browse files Browse the repository at this point in the history
Update Scala to 3.6.2
  • Loading branch information
WojciechMazur authored Dec 10, 2024
2 parents f6eea55 + c472a4d commit dbf5121
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 24 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/cla.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: ./project/scripts/check-cla.sh
env:
AUTHOR: ${{ github.event.pull_request.user.login }}
- uses: scala/cla-verification-action@main
with:
author: ${{ github.event.pull_request.user.login }}
17 changes: 0 additions & 17 deletions project/scripts/check-cla.sh

This file was deleted.

2 changes: 1 addition & 1 deletion src/main/g8/build.sbt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
val scala3Version = "3.5.2"
val scala3Version = "3.6.2"

lazy val lib = project
.in(file("lib"))
Expand Down
2 changes: 1 addition & 1 deletion src/main/g8/inspector/src/main/scala/inspector/Main.scala
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ package inspector
import scala.quoted._

@main def run =
val tastyFile = "lib/target/scala-3.5.2/classes/lib/Greetings.tasty"
val tastyFile = "lib/target/scala-3.6.2/classes/lib/Greetings.tasty"
val tastyContents = Inspector.showCodeOf(tastyFile)
println(tastyContents)
2 changes: 1 addition & 1 deletion src/main/g8/inspector/src/test/scala/inspector/Test.scala
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class InspectorTest {
| def hello(name: scala.Predef.String): scala.Predef.String = "Hello ".+(name)
| }
|}""".stripMargin,
Inspector.showCodeOf("lib/target/scala-3.5.2/classes/lib/Greetings.tasty")
Inspector.showCodeOf("lib/target/scala-3.6.2/classes/lib/Greetings.tasty")
)

}
Expand Down

0 comments on commit dbf5121

Please sign in to comment.