Skip to content

Commit 03cb1d6

Browse files
authored
Merge pull request #506 from scala-js/issue/504
Fix #504
2 parents 2471029 + 62a6abb commit 03cb1d6

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

build.sbt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,11 @@ import scalatex.ScalatexReadme
33

44
ThisBuild / shellPrompt := ((s: State) => Project.extract(s).currentRef.project + "> ")
55

6+
// Issue #504 - remove on 2.x branch
7+
// Our release GitHub Actions job performs the release for SJS 0.6 and 1.0 in parallel.
8+
// This prevents each parallel processes from removing each other's deployment.
9+
sonatypeSessionName := s"${name.value} v${version.value} (SJS $scalaJSVersion)"
10+
611
lazy val scalafixRules = project
712
.in(file("scalafix"))
813
.settings(
@@ -17,6 +22,7 @@ lazy val root = project
1722

1823
name := "Scala.js DOM"
1924

25+
ThisBuild / version := "1.2.0"
2026
ThisBuild / crossScalaVersions := {
2127
if (scalaJSVersion.startsWith("1.")) Seq("2.12.10", "2.11.12", "2.13.1")
2228
else Seq("2.12.10", "2.11.12", "2.10.7", "2.13.1")

0 commit comments

Comments
 (0)