Skip to content

Commit 6701568

Browse files
Merge pull request #10029 from dotty-staging/fix-dottyLatestNightlyBuild
Fix dottyLatestNightlyBuild following scala3 renaming
2 parents c76800d + deb987f commit 6701568

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

project/Build.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,14 +56,14 @@ object Build {
5656
val referenceVersion = "0.27.0-RC1"
5757

5858
val baseVersion = "3.0.0-M1"
59-
val baseSbtDottyVersion = "0.4.3"
59+
val baseSbtDottyVersion = "0.4.4"
6060

6161
// Versions used by the vscode extension to create a new project
6262
// This should be the latest published releases.
6363
// TODO: Have the vscode extension fetch these numbers from the Internet
6464
// instead of hardcoding them ?
6565
val publishedDottyVersion = referenceVersion
66-
val publishedSbtDottyVersion = "0.4.2"
66+
val publishedSbtDottyVersion = "0.4.3"
6767

6868
/** scala-library version required to compile Dotty.
6969
*

sbt-dotty/src/dotty/tools/sbtplugin/DottyPlugin.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ object DottyPlugin extends AutoPlugin {
4949
else fetchSource(s"$major.${minor.toInt - 1}")
5050
}
5151
val (source1, majorVersion) = fetchSource(majorVersionFromWebsite)
52-
val Version = s" <version>($majorVersion\\..*-bin.*)</version>".r
52+
val Version = s" <version>($majorVersion.*-bin.*)</version>".r
5353
val nightly = source1
5454
.getLines()
5555
.collect { case Version(version) => version }

0 commit comments

Comments
 (0)