Skip to content

Commit f4aa9be

Browse files
committedFeb 26, 2025·
Release 0.5.7
1 parent 827f93e commit f4aa9be

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed
 

‎.github/workflows/publish.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
./scripts/dist.sh $version
4343
4444
- name: Archive CLI artifacts
45-
uses: actions/upload-artifact@v3
45+
uses: actions/upload-artifact@v4
4646
with:
4747
name: scala-native-cli
4848
path: release/

‎build.sbt

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
1-
val ScalaNativeVersion = "0.5.7-SNAPSHOT"
1+
val ScalaNativeVersion = "0.5.7"
22
// Update during release procedure to provide access to staged, but not published artifacts
3-
val StagingRepoIds = Nil
3+
val StagingRepoIds = 1255 to 1257
44
val StagingRepoNames = StagingRepoIds.map(id => s"orgscala-native-$id").toSeq
55

66
val crossScalaVersions212 = (14 to 20).map("2.12." + _)
7-
val crossScalaVersions213 = (8 to 15).map("2.13." + _)
7+
val crossScalaVersions213 = (8 to 16).map("2.13." + _)
88
val crossScalaVersions3 =
99
(2 to 3).map("3.1." + _) ++
1010
(0 to 2).map("3.2." + _) ++
1111
(0 to 4).map("3.3." + _) ++
1212
(0 to 3).map("3.4." + _) ++
1313
(0 to 2).map("3.5." + _) ++
14-
Seq("3.6.1")
14+
(2 to 3).map("3.6." + _)
1515

1616
val scala2_12 = crossScalaVersions212.last
1717
val scala2_13 = crossScalaVersions213.last

0 commit comments

Comments
 (0)