Skip to content

Commit

Permalink
Set version to 0.5.0-RC1
Browse files Browse the repository at this point in the history
  • Loading branch information
WojciechMazur committed Feb 28, 2024
1 parent c60aae8 commit 4843efb
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion build.sbt
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@

val ScalaNativeVersion = "0.5.0-RC1"
// Update during release procedure to provide access to staged, but not published artifacts
val StagingRepoIds = (1117 to 1119)

val crossScalaVersions212 = (14 to 19).map("2.12." + _)
val crossScalaVersions213 = (8 to 13).map("2.13." + _)
val crossScalaVersions3 =
Expand Down Expand Up @@ -70,7 +75,7 @@ val cliAssemblyJarName = settingKey[String]("Name of created assembly jar")
inThisBuild(
Def.settings(
organization := "org.scala-native",
scalaNativeVersion := "0.5.0-SNAPSHOT",
scalaNativeVersion := ScalaNativeVersion,
version := scalaNativeVersion.value,
scalaVersion := scala3PublishVersion,
crossScalaVersions := publishScalaVersions,
Expand All @@ -89,6 +94,8 @@ inThisBuild(
Some("scm:git:[email protected]:scala-native/scala-native-cli.git")
)
),
// Used during the releases
resolvers ++= StagingRepoIds.flatMap(id => Resolver.sonatypeOssRepos(s"orgscala-native-$id")),
resolvers ++= Resolver.sonatypeOssRepos("snapshots"),
resolvers += Resolver.mavenCentral,
resolvers += Resolver.defaultLocal
Expand Down

0 comments on commit 4843efb

Please sign in to comment.